Page 1 of 1

TAGCLOUD

PostPosted: Sat Nov 22, 2008 6:14 am
Author: XHIBIT
There is a new flash Tagcloud for wordpress that I'd like to give a wild stab at inserting into my portal which would basically eliminate the need for the QBar

However Im not sure if its feasible or would work, so I thought I'd sling the question here first.

Heres a demo of it

http://www.roytanck.com/2008/03/06/word ... tag-cloud/

Its pretty cool and customizable, and could feasibly be linked to each category and individual forum thread.

Any opinoins ?

Re: TAGCLOUD

PostPosted: Sat Nov 22, 2008 9:46 pm
Author: Helter
it would be easy to add it, but it would be difficult to make it look like it belongs there. you can disable the whole qbar table on the overall_header by commenting it out.
this is for Integra2
FIND
Code: Select all
<table><tr><td><a><img></td><td>{QMENUS}</td><td><a><img></td></tr></table>

REPLACE WITH
Code: Select all
 <!--<table><tr><td><a><img></td><td>{QMENUS}</td><td><a><img></td></tr></table>--><tagcloud>ADD YOUR CODE HERE<tagcloud>  

Re: TAGCLOUD

PostPosted: Wed Nov 26, 2008 8:16 pm
Author: XHIBIT
No I dont actually mean replace the QBar from the menu itself.
(Perhaps I should have stated that to begin with).
What I mean is I'd like to simply add the tag cloud into my portal.

If so where would I insert the swf file to show as a center mod in the php ?

Re: TAGCLOUD

PostPosted: Wed Nov 26, 2008 9:58 pm
Author: Helter
since this is probably a js menu, the easiest way to do this is add it directly to the page.
OPEN
your template/layout/portal_body.tpl
Code: Select all
FINDÂ  <table><tr> <td>


add your code after. It should look like this

Code: Select all
<table><tr> <td>  [color=#FF0000]<START>[/color]<table>   <tr>      <td>   Ã‚  Add your code here  Ã‚      </td>   </tr>   <tr>      <td><img></td>   </tr></table>[color=#FF0000]<END>[/color]  <BEGIN><table width="100%" cellpadding="3" cellspacing="1" border="0" <BEGIN>class="forumline"<END>>      <BEGIN>      <tr>            <th>{center_blocks_row.title.TITLE}</th>      </tr>      <END>      <tr>            <td             <BEGIN>            class="row1"            <END>            >{center_blocks_row.OUTPUT}</td>      </tr></table><br><END>  </td>  <td><img></td><td>  <BEGIN><table>      <BEGIN>      <tr>            <th>{right_blocks_row.title.TITLE}</th>      </tr>      <END>      <tr>            <td>{right_blocks_row.OUTPUT}</td>      </tr></table><br><END>  </td></tr></table>