I tried whith the official package on 2 different sites 2 different theme, but the block appear blank. on firefox and on safari.
I tried whith the official package on 2 different sites 2 different theme, but the block appear blank. on firefox and on safari.
Comments
Comment #1
phildu commentedNow i have the title of the image under the title of the box
Comment #2
Anonymous (not verified) commentedIt's a path problem. In the module file it's trying to download http://www.domain.com/files/images/filename.jpg. When in fact it should look for http://www.domain.com/system/files/images/filename.jpg.
Insert this on line 368:
Comment #3
stephane bouillet commentedHello
at first, thank you for slideshowbox.
As for me it didn't work, because it was searching images in "http://my acount.com/files/images/images/mypicture.jpg"
The 368 line was the basic line
$file = $path.'files/images'.($image->slideshow ? $image->slideshow : $image->_original);
That I change in
$file = $path.'files/'.($image->slideshow ? $image->slideshow : $image->_original);
Of course you have to see in your page code (tape Ctrl +U under firefox) and see where slideshow is searching for your image (usually first third of your code),
And then change the text of slideshowbox.module in consequence...
Bye !
Maybe you can see an example here if it works ;-)
Comment #4
sunSee http://drupal.org/node/102410 for a working patch