minifront page remove image link
- Posted by das (2) Offline
Hi
I need to remove the thumbnail image link in the module is this possible
10 years 1 month ago #1
by das
I need to remove the thumbnail image link in the module is this possible
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5318) Offline
Hi Yes you can do that. basically you just need to remoe the link from the template files.
Please open this file with your favorite php editor :
.../modules/mod_minifrontpage/themes/tabbed-fade-in-out/tmpl/bottom.php
Find this code at line 33, 40,66 and 74 :
then simple remove the <a> tag from that code so it becomes :
10 years 1 month ago #2
by TemplatePlazza
Please open this file with your favorite php editor :
.../modules/mod_minifrontpage/themes/tabbed-fade-in-out/tmpl/bottom.php
Find this code at line 33, 40,66 and 74 :
<a href="<?php echo $item->link; ?>">
<img class="mfp-img-<?php echo $thumb_align; ?>" ...
</a>
then simple remove the <a> tag from that code so it becomes :
<img class="mfp-img-<?php echo $thumb_align; ?>" ...
Please Log in or Create an account to join the conversation.
- Posted by das (2) Offline
i commented the lines in the code like below but no help
10 years 1 month ago #3
by das
//<a href="<?php echo $item->link; ?>">
<img class="mfp-img-<?php echo $thumb_align; ?>"
src="<?php echo mfpResizeImageHelper::getResizedImage('/'.$item->introimage, $thumb_width, $thumb_height, 'crop'); ?>"
alt="<?php echo $item->imgalt; ?>" title="<?php echo $item->imgtitle; ?>"
style="height:<?php echo $thumb_height; ?>px;width:<?php echo $thumb_width ?>px;" />
//</a>
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5318) Offline
Hi, you should comment it like this :
10 years 1 month ago #4
by TemplatePlazza
<!-- <a href="/<?php echo $item->link; ?>"> -->
<img class="mfp-img-<?php echo $thumb_align; ?>"
src="/<?php echo mfpResizeImageHelper::getResizedImage('/'.$item->introimage, $thumb_width, $thumb_height, 'crop'); ?>"
alt="<?php echo $item->imgalt; ?>" title="<?php echo $item->imgtitle; ?>"
style="height:<?php echo $thumb_height; ?>px;width:<?php echo $thumb_width ?>px;" />
<!-- </a>-->
Please Log in or Create an account to join the conversation.