PDA

View Full Version : Template Edit - Move Tag Cloud


legionofangels
10-20-2008, 07:35 PM
We actually use Zoints tags indifference to vb.

I've asked in the thread here and asked at there website, and I think they are so busy with a new modification they are making that it's been months and still no answer.

There is no default option to do this, so it requires a template change I'm guessing, perhaps a change in the XML code.

What we'd like to do is put our forum tag cloud on the bottom of the page under the what's going on section, rather than the top.

As you can see here:

http://www.legionofangels.net/forum/

On Any style it shows the tag cloud on the top of the forum. We'd like to move it down either below the What's Going On Box, or Below the CYB Adv Stats Box inbetween the What's going on Box and Adv Stats. Either way, we don't care, we just want to move it down.

I'm thinking I either have to edit a Zoints template, which here is the list of them:

http://network.zoints.com/attachment.php?attachmentid=871&stc=1&d=1219870445

Modify the actual XML file, which I kind of doubt.

Or I'd have to add a special condition or code into the FORUM HOME template to get it to appear in the right place.

Here is the template I think I need to adjust if it's a template of there's I have to change:

zointstags_tagcloud

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<base href="$vboptions[bburl]/" />
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title>$vbphrase[zointstags_tagcloud_title]</title>

</head>
<body>
$header
$navbar


<!-- tag cloud -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="95%" align="center">
<tr>
<td class="tcat">$vbphrase[zointstags_popular_tags]</td>
</tr>
<tr>
<td class="alt1" align="center">
<form action="tags/" method="POST">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="text" class="bginput" name="search" value="" size="40" />
<input type="submit" class="button" value="$vbphrase[zointstags_search_tags]" />
</form>
<br /><br />
<if condition="$tagcloud">
$tagcloud
<else />
$vbphrase[zointstags_no_tag_found]
</if>
</td>
</tr>
</table>

<if condition="!empty($search)">
<br />
<div align="center"><a href="tags/">$vbphrase[zointstags_main_cloud]</a></div>
</if>

<table align="center" width="95%"><tr><td align="$stylevar[right]">$pagenav</td></tr></table>

<!-- /tag cloud -->


$footer
<div align="center" class="smallfont">$vbphrase[zointstags_copyright]</div>
</body>
</html>

Any Help Is MUCH Appreciated.

Thank you,

Legion of Angels

legionofangels
10-23-2008, 03:46 PM
* bump *

Seven Skins
10-23-2008, 04:36 PM
Look for this .... $zointstags_tagslink (Or something similer).... in your navbar template or may be forumhome template.

And put comment tag around it to disable it e.g. <!--$zointstags_tagslink-->

Add $zointstags_tagslink to your forumhome template just above whats going on box.

PS. I dont have this installed so ... make copies of your templates in txt files before editing just in case you need to change them back.

.