1. In main.tpl right below this code snippet on line 22:
{include file="header.tpl"}
add this code snippet:
<script src="http://www.widzoo.com/widzoo.js"></script>
Alternatively download the modified main.tpl. (Right click and save as)
2. In link.tpl right below this code snippet on lines 4-8:
{if $smarty.const.SHOW_PAGERANK}
<td>
{include file="pagerank.tpl" pr=$link.PAGERANK}
</td>
{/if}
add this code snippet:
<td>
<script>widzoo.createThumbnail('{$link.URL}', 120, 90);</script>
</td>
Alternatively download the modified link.tpl. (Right click and save as)
You can of course change the thumbnails' width & height to your liking instead of the default 120x90.
In detail.tpl right below this code snippet on lines 20-29:
<tr>
<td class="label">{l}Title{/l}:</td>
<td class="smallDesc" align="left">
<a id="id_{$ID}" href="{$URL|escape|trim}" title="{$TITLE|escape|trim}"
{* nofollow *}
{if $link.NOFOLLOW or ($link.RECPR_VALID eq 0 and ($smarty.const.RECPR_NOFOLLOW eq 2
or ($smarty.const.RECPR_NOFOLLOW eq 1 and $link.RECPR_REQUIRED eq 1)))} rel="nofollow"{/if}
{if $smarty.const.ENABLE_BLANK} target="_blank"{/if}>
{$TITLE|escape|trim}</a> <span class="url">- {$URL|escape|trim}</span>
</td>
</tr>
add this code snippet:
<tr>
<td class="label">{l}Preview{/l}:</td>
<td class="smallDesc" align="left">
<script src="http://media.widzoo.com/widzoo.js"></script>
<script>widzoo.createThumbnail('{$URL}', 120,90);</script>
</td>
</tr>
Alternatively download the modified detail.tpl. (Right click and save as)
You can of course change the thumbnails' width & height to your liking instead of the default 120x90.