Good Day,
I've setup a site using this great theme - http://www.ensignltd.co.uk/ and i need to turn off the slideshows at the bottom of the page. Is there a way of doing this?
Thanks,
-Alex
Good Day,
I've setup a site using this great theme - http://www.ensignltd.co.uk/ and i need to turn off the slideshows at the bottom of the page. Is there a way of doing this?
Thanks,
-Alex
Go to Propulsion > Theme Options > Layout & Settings and search for following headline "Slideshow behavior on overview pages". Select "Display only single image on overview pages and all slideshow images on single entries" and the slideshow feature will be deactivated.
Thanks,
I've changed that setting but nothing happened. I'm using collumns in the template builder and showing pages if that helps.
-Alex
I've tried both settings now and nothing seems to happen on either. Please help..
:)
I have the same problem as alexdigital. The setting in propulsion theme option change only the behavior on portfolio overview page.
Any idea?
THX
Hey,
in includes\helper-slideshow.php you can turn off autorotate for all sliders on the homepage by replacing the slideshow_attributes() function with
function slideshow_attributes()
{
$data = "";
if(is_home()){
$data .= "data-autorotation='false' ";
} else{
$data .= "data-autorotation='".$this->autoplay."' ";
}
$data .= "data-autorotation-timer='".$this->duration."' ";
return $data;
}
I'm not certain how you'd specifically target the thumbnails you're referring to. I'll tag this topic for Kriesi to have a look at, as this might be a useful feature for future updates.
I hope this helps a bit :)
Cheers,
Chris
Thanks.
That doesn't really help as I need the main slideshow to work..
I look forward to Kriesi having a look.
-alex
Hi Alex,
In the meantime, you can also use direct text input and insert the single image with links/headlines with html.
Regards,
Devin
Great, thanks.
I've done that it works.
However is there a way to make the image above the text clickable?
-Alex
If you are using direct text input, you would just make the img tag within with the a href so that its a link.
This topic has been closed to new replies.