Quote:
Originally Posted by soletrader
Check my site index at www.traderslaboratory.com
The navigation on the left, the skype on the right, the new articles in the middle, the welcome to traders laboratory box in the center are all examples of modules. I would like to bring the tags on my site index so would be a nice idea to stick it in a module.
|
You refer to the tags mod...
It's very simple..
If you have the tags mod installed, you can use a very simple javascript to place a tagcloud whereever you want, even the index page. You can then visually format it it anyway you want.
As described here:
https://vborg.vbsupport.ru/showthread.php?t=128642
Code:
<!-- Tag Cloud -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[bt_tag_cloud]</td>
</tr>
<tr>
<td class="alt1" align="center">
<script type="text/javascript" language=Javascript src="http://www.boardtracker.com/cloud/js/?board={$vbulletin->options['bt_tag_boardid']}&items=20&smallsize=6&bigsize=20&hot=e01010&cold=4090a0&days=90&linktype={$vbulletin->options['bt_tag_link_type']}"></script>
</td>
</tr>
</table>
<!-- End Tag Cloud -->
Configuring the following items in the script link: &items=, &smallsize=, &bigsize=, &hot=, &cold= and &days= you can decide exactly how you want the tag cloud to look like
I hope in answers the question.