Version: 1.00, by Atakan KOC
Developer Last Online: Mar 2023
Category: Forum Home Enhancements -
Version: 3.7.6
Rating:
Released: 03-25-2008
Last Update: Never
Installs: 448
Uses Plugins Template Edits Auto-Templates
No support by the author.
Tag Cloud - Forum Home
install
Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-tag_cloud.xml' from your computer then press 'Import'
Modifications Info
Plugin : 2 Phrases : 11 Template : 1 Setting : 2
Latest Posts Setting
Go to your admin cp, then:
vBulletin Options -> Tag Cloud - Forum Home ->
Versions: v1.0 - 26 March 2008
-First release
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
the only problem is that I quickly found out that some of my users have been putting porn in all the tags, so I immediately had to turn the whole tag system off
IFor the below forum setting I get tagcloud module in two places at the same time - below the navbar and above the stats block. Might be conflicting with random pictures mod...??
Fixed with this...
Find in xml for product
Code:
case 3: $vbulletin->templatecache['FORUMHOME'] = str_replace('<!-- what\'s going on box -->', '<!-- end what\'s going on box -->'.$vbulletin->templatecache['tag_cloud_forum_home'], $vbulletin->templatecache['FORUMHOME']); break;
case 4: $vbulletin->templatecache['FORUMHOME'] = str_replace('<!-- end what\'s going on box -->', '<!-- end what\'s going on box -->'.$vbulletin->templatecache['tag_cloud_forum_home'], $vbulletin->templatecache['FORUMHOME']); break;
Replace with this...
Code:
case 3: $vbulletin->templatecache['FORUMHOME'] = str_replace('<!-- tagcloud below forums -->', '<!-- tagcloud below forums -->'.$vbulletin->templatecache['tag_cloud_forum_home'], $vbulletin->templatecache['FORUMHOME']); break;
case 4: $vbulletin->templatecache['FORUMHOME'] = str_replace('<!-- tagcloud below going on box -->', '<!-- tagcloud below going on box -->'.$vbulletin->templatecache['tag_cloud_forum_home'], $vbulletin->templatecache['FORUMHOME']); break;
I also have random pictures module and when i set to show up below whats going on box...it appears over the random picture display and below whats going on box...can somebody fix this, and upload the correct xml file? Without template edits please(just to avoid editing)
Thanxx
I also have random pictures module and when i set to show up below whats going on box...it appears over the random picture display and below whats going on box...can somebody fix this, and upload the correct xml file? Without template edits please(just to avoid editing)
Thanxx
The post right above the one you just made, fixes this problem you described.
I dont think the problem has anything to do with the random picture hack but I didnt try to prove it as I use that hack also.
The only way I could make it work properly was to edit the templates, as the original xml called for pre-existing comments in the templates, and it wouldnt work doing it that way (as far as I could find out)
And then editing the xml to seek the comments added into the templates.
But I assure you that it will fix the problem I, you, and others, had.
Just Installed. Works a dream.
Would like to assign tag number, at the moment we have 70 tags,... looked thru code could not see where to set this lower, apart from remove one line of tags.
Just Installed. Works a dream.
Would like to assign tag number, at the moment we have 70 tags,... looked thru code could not see where to set this lower, apart from remove one line of tags.
you can control the number of tags in your normal vB settings. This add on uses a hook to place the normal tagcloud on the start page so all tag-settings also apply for the cloud that this add-on creates.