Quote:
Originally Posted by efil
Hi,
Is there a way that the mod will show just 10 tags for example , and not the amount that classified in admin cp at "Number of popular tags to show per page".
|
Yep - look in the code for the module and find this section:
Code:
$_tags = $db->query_read("
SELECT zoints_tag.tag, COUNT(*) count FROM " . TABLE_PREFIX . "zoints_tag zoints_tag
LEFT JOIN " . TABLE_PREFIX . "thread thread ON(zoints_tag.threadid = thread.threadid)
WHERE thread.forumid IN(" . implode(',', $visible) . ")
GROUP BY zoints_tag.tag
ORDER BY count DESC
LIMIT " . $vbulletin->options['zointstags_showtags'] . "
");
Just change the LIMIT section to however many you want: