Script Pulse

Trade Pulse => Trade Pulse Support => Topic started by: foodzy on March 25, 2011, 09:09:21 AM

Title: Can not create thumbs for toplists
Post by: foodzy on March 25, 2011, 09:09:21 AM
1) I set width and height, check active checkbox in 'Thumbs crop settings' section 
2) Create top list with this code in template
Code: [Select]
<img alt="%%NAME11%%" src="%%THUMB11-1-1%%" /> 3) Clicked grab now
4) Clicked rebuild tops

But in generated top list instead of image is see this code
Code: [Select]
<img alt="Trader name" src="" /> . No link at thumb at all.
What am I doing wrong?
Title: Re: Can not create thumbs for toplists
Post by: bbhrucy79 on March 25, 2011, 09:21:57 AM
you missed the anchor tag

try


<a><img src="%%THUMB1-1-1%%" width="xxx" height="yyy" border="0" /></a>


replace 'xxx' and 'yyy' with size of your thumb. source has to go before alt and also everything needs to be within an anchor tag.

hth

Title: Re: Can not create thumbs for toplists
Post by: foodzy on March 25, 2011, 09:37:35 AM
Problem solved.