Quote:
Originally Posted by wrcturbo 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&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&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}