minifront page remove image link

Hi
I need to remove the thumbnail image link in the module is this possible
10 years 1 month ago #1 by das

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 :
<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; ?>" ...
10 years 1 month ago #2 by TemplatePlazza

Please Log in or Create an account to join the conversation.

i commented the lines in the code like below but no help
//<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>
10 years 1 month ago #3 by das

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5318) Offline
Hi, you should comment it like this :
<!-- <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>-->
10 years 1 month ago #4 by TemplatePlazza

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum