here is what you do. Open file class.tagmodule.php in the plugin. Find line 33 which looks as below. ->Where('t.CountDiscussions >', 0, FALSE) Change the number to the minimum # needed to be shown. Default is all tags over zero. If you place it at 5 or 10 it should reduce your list fast :0)
Comments
i need any reply....thx.
hope any one can solve it. :-)
->Where('t.CountDiscussions >', 0, FALSE)Change the number to the minimum # needed to be shown. Default is all tags over zero. If you place it at 5 or 10 it should reduce your list fast :0)
->Limit($Limit, $Offset)
where
$Offset = 0; //usually, since you want all of them
$Limit = 5; // defined by you, if you want the top 5 tags or something like that
/cd