Quote:
Originally Posted by Brew
Your mod is working great
But the cloud only shows in alphabetical order. I know this is a vB thing, but can you tell me how to make it display most used?
Thanks!
|
It does display the most used tags in that forum. There is a sort line further in the code that sorts them in the plugin using the forumdisplay_start hook location:
PHP Code:
uksort($tags, 'strnatcasecmp');
You can try removing it and see if you get what you want then.