MyBB Community Forums
Show Portal Boxes on Forums Main Index! - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: Show Portal Boxes on Forums Main Index! (/thread-66053.html)

Pages: 1 2 3


Show Portal Boxes on Forums Main Index! - querschlaeger - 2010-03-09

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


RE: Show Portal Boxes on Forums Main Index! - alirex - 2010-03-10

Thanx , let me check it


RE: Show Portal Boxes on Forums Main Index! - Winford F. - 2010-03-10

Good idea, can you choose which side you want it on?


RE: Show Portal Boxes on Forums Main Index! - querschlaeger - 2010-03-10

(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.


RE: Show Portal Boxes on Forums Main Index! - HuggyBear - 2010-03-11

Anyway to add ekstra info ? html !


RE: Show Portal Boxes on Forums Main Index! - querschlaeger - 2010-03-11

(2010-03-11, 06:14 PM)HuggyBear Wrote: Anyway to add ekstra info ? html !

Just edit the index template.


RE: Show Portal Boxes on Forums Main Index! - HuggyBear - 2010-03-11

(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 ?


RE: Show Portal Boxes on Forums Main Index! - querschlaeger - 2010-03-11

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}



RE: Show Portal Boxes on Forums Main Index! - TheLifelessOne - 2010-03-11

Screenshot? O.o


RE: Show Portal Boxes on Forums Main Index! - HuggyBear - 2010-03-12

@ 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}