Can you get the images within a easy slider to open in Lightbox?
Also is there a way to search in the new forum just within the theme you are using? I used to be able to search just within Enfold theme for possible solution’s. It now seems there is only one search and you can narrow the search?
Regards
Chris
Hi artistic24459!
Edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code:
if($this->config['bg_slider'] != "true")
{
$html .= "<img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' />";
}
Replace it with:
if($this->config['bg_slider'] != "true")
{
$html .= "<a rel='lightbox' href='".$img[0]."'><img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' /></a>";
}
Remove browser cache then reload the page.
Regards,
Ismael
Thanks for that :-) Perfect