Page 1 of 1

Button image slideshow

Posted: 09 Jul 2013, 08:09
by abertrande
Hello
I would like to know if it's possible not to have the "close button" just on the slideshow of my start page
thank for your help
http://www.abertrande.com
Arnaud

Re: Button image slideshow

Posted: 09 Jul 2013, 21:14
by mjau-mjau
It seems you have added the correct parameters, but you have an empty space which breaks the functionality:
Code
settings.startmode=image&image.slideshow.autostart=true&thumbnails.thumbnailscroller.enabled=false&controls.largecontrols.enabled=false&controls.maincontrols.enabled=false&image.imagebuttons.enabled=false&image.closebutton.enabled=false &image.slideshow.interval=4
See the empty space after the closebutton setting? It should look like this:
Code
settings.startmode=image&image.slideshow.autostart=true&thumbnails.thumbnailscroller.enabled=false&controls.largecontrols.enabled=false&controls.maincontrols.enabled=false&image.imagebuttons.enabled=false&image.closebutton.enabled=false&image.slideshow.interval=4

Re: Button image slideshow

Posted: 10 Jul 2013, 03:49
by abertrande
it's good
thanks :)
and it's possible to disable the title just for this slideshow ?

Re: Button image slideshow

Posted: 10 Jul 2013, 12:11
by mjau-mjau
abertrande wrote:and it's possible to disable the title just for this slideshow ?
Add this to the end of the parameters string, without any space:
Code
&image.text.text1.enabled=false

Re: Button image slideshow

Posted: 10 Jul 2013, 12:43
by abertrande
mjau-mjau wrote:
abertrande wrote:and it's possible to disable the title just for this slideshow ?
Add this to the end of the parameters string, without any space:
Code
&image.text.text1.enabled=false
Thank
I tried without space ;)
and it does not work .. I still have the title

Re: Button image slideshow

Posted: 10 Jul 2013, 22:59
by mjau-mjau
abertrande wrote:and it does not work .. I still have the title
Thats because you have manually already disabled the text1 element, and instead enabled the text2 element which reacts on image hover. Since you are using text2 instead, you would need to change the string to following:
Code
&image.text.text2.enabled=false

Re: Button image slideshow

Posted: 11 Jul 2013, 01:41
by abertrande
mjau-mjau wrote:
abertrande wrote:and it does not work .. I still have the title
Thats because you have manually already disabled the text1 element, and instead enabled the text2 element which reacts on image hover. Since you are using text2 instead, you would need to change the string to following:
Code
&image.text.text2.enabled=false

of course .. sorry;)
thank for your help