MyBB Community Forums

Full Version: Sideblocks for portalpage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

Im really new at this mybb and trying to understand how it all works.
So I need a little help to get me going. Wink

I need a sideblock on the rightside on my portal page. 
In the block I want custom URL links to be shown and clickable to redirect users to my collaborators websites. 

How do I do it and where do I put the URL for the links that opens in a new page?

Cheers and thanks

www.desperados-et.com
(2016-07-02, 07:43 AM)Ray2 Wrote: [ -> ]Hi

Im really new at this mybb and trying to understand how it all works.
So I need a little help to get me going. Wink

I need a sideblock on the rightside on my portal page. 
In the block I want custom URL links to be shown and clickable to redirect users to my collaborators websites. 

How do I do it and where do I put the URL for the links that opens in a new page?

Cheers and thanks

www.desperados-et.com

There are plugins already made to do sideboxes, just search the forum. Otherwise, in portal template, find:

<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
{$multipage}
</td>
</tr>
</table>

and replace with:

<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top">
{$announcements}
{$multipage}	
</td>
<td>&nbsp;</td>
<td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Custom Box</strong></td>
</tr>
<tr>
<td class="trow1">
<a href="#">Link 1</a><br />
<a href="#">Link 2</a><br />
<a href="#">Link 3</a>	
</td>
</tr>
</table><br />	
</td>
</tr>
</table>

Take note of the custom box, and make changes to suit.