MyBB Community Forums

Full Version: Show Portal Boxes on Forums Main Index!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Index Boxes brings the cool portal boxes to the index page of your forum:
  • Welcome Box
  • Forum Statistics
  • Who's Online
  • Search Box
  • Latest Discussions

Download: http://mods.mybboard.net/view/index-boxes
License: GPL
Thanx , let me check it
Good idea, can you choose which side you want it on?
(2010-03-10, 03:29 PM)iPod15 Wrote: [ -> ]Good idea, can you choose which side you want it on?

It shows exactly the same boxes you enabled on portal.
Anyway to add ekstra info ? html !
(2010-03-11, 06:14 PM)HuggyBear Wrote: [ -> ]Anyway to add ekstra info ? html !

Just edit the index template.
(2010-03-11, 06:48 PM)querschlaeger Wrote: [ -> ]
(2010-03-11, 06:14 PM)HuggyBear Wrote: [ -> ]Anyway to add ekstra info ? html !

Just edit the index template.

If I want an extra "box" between private message box and online users box.
Where do I edit index to do that ?
Open the template and you will see the box variables:

{$welcome}
{$pms}
{$search}
{$stats2}
{$whosonline2}
{$latestthreads}

Just insert some HTML beetween the "boxes":

{$welcome}
{$pms}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Box Title</strong></td>
</tr>
<tr>
<td class="trow1">Box Content</td>
</tr>
</table>
<br />
{$search}
{$stats2}
{$whosonline2}
{$latestthreads}
Screenshot? O.o
@ TheLifelessOne
Just take a look at your portal.php Smile

@querschlaeger
thx - works perfect.


BUT - is it posible for me to make a template with the html - and inserte it into index template ?

something like:
{$welcome}
{$pms}
{$MY-TEMPLATE}
{$search}
{$stats2}
{$whosonline2}
{$latestthreads}
Pages: 1 2 3