2
Hi Doug,
You need to change the template mylinks_index.html to do this.
in the template mylinks_index.html
find the following :
<a href="<{$xoops_url}>/modules/mylinks/viewcat.php?cid=<{$category.id}>"><img src="<{$category.image}>" height="50" border="0" alt="" />a>
and change to :
<a href="<{$xoops_url}>/modules/mylinks/viewcat.php?cid=<{$category.id}>&orderby=hitsD"><img src="<{$category.image}>" height="50" border="0" alt="" />a>
and find :
<td valign="top" width="40%"><a href="<{$xoops_url}>/modules/mylinks/viewcat.php?cid=<{$category.id}>"><b><{$category.title}>b>a> (<{$category.totallink}>)<br /><{$category.subcategories}>td>
and change that to :
<td valign="top" width="40%"><a href="<{$xoops_url}>/modules/mylinks/viewcat.php?cid=<{$category.id}>&orderby=hitsD"><b><{$category.title}>b>a> (<{$category.totallink}>)<br /><{$category.subcategories}>td>
good luck !
Highlander