(Applies to: all versions of FusionBB)
How to move the 'generic' particle box from the Main page to the footer_right
(this is the one that says: "FusionBB features particle boxes. Particle boxes are boxes of content from your forum. You can even have custom particle boxes (like this one) containing whatever you want!" )
- This is actually part of the template, so you'll need to remove the following code from header_both.php:
{$skin['tableopen']}
<table border='0' cellpadding='3' cellspacing='{$skin[cellspacing]}' width='100%'>
<tr>
<th class='theader' align='left'>
Particle Box
</th>
</tr>
<tr>
<td align='left' valign='top' class='color1'>
FusionBB Features particle boxes. Particle boxes are boxes of content from your forum.
You can even have custom particle boxes (like this one) containing whatever you want!
</td>
</tr>
</table>
{$skin['tableclose']}
- and place it into the footer_right.php template above, below, or between these lines:
(these lines are template keys that are replaced with the dynamic particle boxes)
<!--PARTICLE_ONLINE-->
<!--PARTICLE_HOT_TOPIC-->
<!--PARTICLE_QUOTE-->
<!--PARTICLE_SHOUTBOX-->
<!--PARTICLE_CURRENT_POLL-->
<!--PARTICLE_RECENT_TOPICS-->
<!--RSS_FEED_1-->
<!--RSS_FEED_2-->
<!--RSS_FEED_3-->
<!--RSS_FEED_4-->
<!--RSS_FEED_5-->
<!--RSS_FEED_6-->
<!--RSS_FEED_7-->
<!--RSS_FEED_8-->
<!--RSS_FEED_9-->
<!--RSS_FEED_10-->