- Posts: 99
- Thank you received: 0
Link photo to category in home page
-
mojastran
Inactive member -
Topic Author
- Member
-
Less
More
11 years 2 months ago - 11 years 2 months ago #36271
by mojastran
Link photo to category in home page was created by mojastran
Hello,
I'd like small photos on home page (categorie hompage) to link to the article same as title or read more...
It looks as if photos have the link, but it doesn't work.
Please see the attached print screen.
Best regards
I'd like small photos on home page (categorie hompage) to link to the article same as title or read more...
It looks as if photos have the link, but it doesn't work.
Please see the attached print screen.
Best regards
Last edit: 11 years 2 months ago by mojastran.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago #36279
by ivan.milic
Replied by ivan.milic on topic Link photo to category in home page
send link so we could check why they does not work
Please Log in to join the conversation.
-
mojastran
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 99
- Thank you received: 0
11 years 2 months ago #36290
by mojastran
Replied by mojastran on topic Link photo to category in home page
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago #36297
by ivan.milic
Replied by ivan.milic on topic Link photo to category in home page
Add htis:
jQuery(document).ready(function(){
jQuery('.image_mask').click(function(){
jQuery(this).next().find('a:first').trigger('click');
});
});
to bottom of:
templates/hot_music_band/js/hot_music_band.js
jQuery(document).ready(function(){
jQuery('.image_mask').click(function(){
jQuery(this).next().find('a:first').trigger('click');
});
});
to bottom of:
templates/hot_music_band/js/hot_music_band.js
Please Log in to join the conversation.
-
mojastran
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 99
- Thank you received: 0
11 years 2 months ago #36334
by mojastran
Replied by mojastran on topic Link photo to category in home page
Hello,
i added the code (see the printscreen), but it is not working.
Regards
i added the code (see the printscreen), but it is not working.
Regards
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago #36337
by ivan.milic
Replied by ivan.milic on topic Link photo to category in home page
Try like this:
jQuery(document).ready(function(){
jQuery('.image_mask').click(function(){
window.location = jQuery(this).next().find('a:first').attr('href');
});
});
jQuery(document).ready(function(){
jQuery('.image_mask').click(function(){
window.location = jQuery(this).next().find('a:first').attr('href');
});
});
Please Log in to join the conversation.
Time to create page: 0.172 seconds