hello evryones,
I have put that code at the end of my userindex.tpl hoping to get listed the most popular listings for each user in his account but in fact nothing is showing up apart between <p> and </p>!
Anyone can help me to understand please, thank you
<p>These are your most popular listings in the last 30 days.</p>
<table width="100%" border="0" cellspacing="3" cellpadding="3">
{foreach from=$my_popular item="entry"}
<tr>
<td width="0%" class="{cycle values="row1,row2" advance=false name=class}" nowrap="nowrap"><a href="../viewlisting.php?view={$entry.lid}">{$entry.title}</a></td>
<td width="100%" class="{cycle values="row1,row2" advance=false name=class}" nowrap="nowrap"><img src="modules/listingstats/images/{cycle values="blue,green,orange,red" name=color advance=false}-left.gif" width="3" height="10"><img src="modules/listingstats/images/{cycle values="blue,green,orange,red" name=color advance=false}.gif" width="{$entry.percentage}%" height="10"><img src="modules/listingstats/images/{cycle values="blue,green,orange,red" name=color advance=true}-right.gif" width="3" height="10"></td>
<td width="0%" class="{cycle values="row1,row2" advance=true name=class}" nowrap="nowrap">{$entry.total}</td>
</tr>
{/foreach}
</table>