Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

the tag is too more and the list is too long,how to change this?

edited October 2010 in Vanilla 2.0 - 2.8
now, more and more visitor use the tag, and get the more and more tags.

so, the list in sidebar is too long.

how to set a limit of the number of tags, or how to redesign a new way to show these tags?

thx for any reply.
Tagged:

Comments

  • no one can reply it?

    i need any reply....thx.
  • i also have this problems.

    hope any one can solve it. :-)
  • @Tim spam spam spam! :)
  • i also need a plug in to clear up the tags....
  • T_T no one can reply this? @Tim
  • AdrianAdrian Wandering Spirit Montreal MVP
    edited October 2010
    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)
  • You could even do something like:
    ->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
Sign In or Register to comment.