Is there a way for the user to click on a picture in the banner and go to a specific page? That way I can use the banner to rotate through our products.

Comments

Deepika.chavan’s picture

Hi,
Add 'a' tag before 'img' tag in 'page-front.tpl.php' and 'page.tpl.php' (if slideshow is there on other pages too).
Like, I replaced the following line of code in page-front.tpl.php :

<img src="<?php print $base_path . $directory; ?>/images/slideshows/sea.jpg" width="950" height="355" alt="slideshow 1"/>

with the following code :

<a href="https://encrypted.google.com/" target="_blank"><img src="<?php print $base_path . $directory; ?>/images/slideshows/sea.jpg" width="950" height="355" alt="slideshow 1"/></a>

Such way that you can add 'a' tag for all images and can set the value of href accordingly.
HTH !!

Rgrds,
Deepika chavan.

danpros’s picture

Category: feature » support
Status: Active » Closed (fixed)

Thanks Deepika.chavan,

I will close this one.

Dan