- Posts: 17
- Thank you received: 0
Hyperlink images to another webpage
-
simplyme1010
Inactive member -
Topic Author
- New Member
-
Less
More
13 years 3 months ago #13401
by simplyme1010
Hyperlink images to another webpage was created by simplyme1010
1. I like to be able to hyperlink the big images to other websites. I like to be able to configure the website URL via the joomla module backend instead of always editing the php file.
What are the files I need to edit?
2. Is it possible for me to unlink the small thumbnails to the big images? I like to make have just 3 static thumbnails but have 6 big images rotating and big images can be linked to other web pages.
What are the files I need to edit?
2. Is it possible for me to unlink the small thumbnails to the big images? I like to make have just 3 static thumbnails but have 6 big images rotating and big images can be linked to other web pages.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 3 months ago #13403
by ivan.milic
Replied by ivan.milic on topic Re: Hyperlink images to another webpage
You can use link from thumb for big image. Open:
modules\mod_hot_designation\tmpl\default.php
find this:
change it to this:
you can enter full url (remote site) in slot link field.
2. - not possible now, you can hire us for custom job.
modules\mod_hot_designation\tmpl\default.php
find this:
Code:
<img src="<?php echo $bigPicDir; ?>/<?php echo $bigImage[$loop]; ?>" width="<?php echo $bigPicWidth; ?>" height="<?php echo $bigPicHeight; ?>" alt="" />
change it to this:
Code:
<img onclick="window.location = '<?php echo $link[$loop]; ?>';" src="<?php echo $bigPicDir; ?>/<?php echo $bigImage[$loop]; ?>" width="<?php echo $bigPicWidth; ?>" height="<?php echo $bigPicHeight; ?>" alt="" />
you can enter full url (remote site) in slot link field.
2. - not possible now, you can hire us for custom job.
Please Log in to join the conversation.
Time to create page: 0.149 seconds