ok, anyone wishing to do this, I have hacked it, at least for the forumdisplay cloud:
Step 1:
Go to: AdminCP >> Plugins & Products >> Plugin Manager
Then edit this plugin: Zoints Thread Tags (Forum display)
Find:
Code:
foreach ($tags as $tag => $tagcount)
{
$zointstag_link = str_replace(' ', '-', $tag);
eval('$tagcloudbits .= "' . fetch_template('zointstags_forumdisplay_tagbit') . '";');
$firsttag = false;
}
Replace with:
Code:
foreach ($tags as $tag => $tagcount)
{
$size = 50 + round(($tagcount-$min) / $max * 100);
$zointstag_link = str_replace(' ', '-', $tag);
eval('$tagcloudbits .= "' . fetch_template('zointstags_forumdisplay_tagbit') . '";');
$firsttag = false;
}
Also, you can replace the "50" in:
Code:
$size = 50 + round(($tagcount-$min) / $max * 100);
to make the clouded tags smaller or larger
Step 2:
Go to: AdminCP >> Style Manager >> Edit Templates
Customize this template: zointstags_forumdisplay_tagbit
Find:
Code:
<a href="$tagsurl/$zointstag_link/" rel="tag">$tag</a>
Replace with:
Code:
<a href="$tagsurl/$zointstag_link/" rel="tag" style="font-size: $size%">$tag</a>
And that's it.. you're done!
Happy hacking.
R.