2
Hi Doug,
You need to change the template mylinks_index.html to do this.
in the template mylinks_index.html
find the following :
le="color: #000000"><?php <a href="<{$xoops_url}>/modules/mylinks/viewcat.php?cid=<{$category.id}>"><img src="<{$category.image}>" height="50" border="0" alt="" /></a>
and change to :
le="color: #000000"><?php <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 :
le="color: #000000"><?php <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 :
le="color: #000000"><?php <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