View Single Post
  #34 (permalink)  
Old 07-11-2008, 01:13 PM
catchpen's Avatar
catchpen catchpen is offline
Pligg Donor
 
Join Date: Jan 2008
Posts: 211
Thanks: 29
Thanked 18 Times in 13 Posts
Quote:
Originally Posted by wrcturbo View Post
anyone using this template have any idea how to remove to the thumbshots from showing up?
It's in your templates/garrx/link_summary.tpl

back up a copy then find
Code:
<img src="http://msnsearch.srv.girafa.com/srv/i?s=MSNSEARCH&amp;r={$url_short}" style="float:left; margin-left:65px;margin-right:15px;padding-top:0px;border:1px solid black;" alt="{$url_short}" height="80" width="110" />
Either remove that to remove web thumbnails or you could put a if statement to control it in admin I think this should work - replace the above with this

Code:
{if $use_thumbnails eq true && $pagename eq "story" && $url_short neq "http://" && $url_short neq "://"}
<img src="http://msnsearch.srv.girafa.com/srv/i?s=MSNSEARCH&amp;r={$url_short}" style="float:left; margin-left:65px;margin-right:15px;padding-top:0px;border:1px solid black;" alt="{$url_short}" height="80" width="110" />
{/if}
Reply With Quote