MyBB Community Forums

Full Version: Box with Links on Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was wondering if there is a box (or it can be created) that shows (specified by the admin) links to various parts to the forums. I just mean like a regular box with links in it.

Is this possible please let me know if so or if you have the mod created.

Thank you
hey

well yeah

in Admin CP > Templates > Modify / Delete > Expand > Portal Templates > Portal

Find this $welcome

above it add $urbox

now go back to the list, find the button New Template at the top add a new template called portal_urbox

and add this code to it




<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead"><strong>Adv</strong></td>
</tr>
<tr>
<td class="trow1">
Your things here
</td>
</tr>
</table></td></tr></table>
<br />

or you may add the code directly above $welcome. in case u choosed to make a new template, then pls go and edit portal.php just above // Get the online usersadd

eval("\$urbox = \"".$templates->get("portal_urbox")."\";");

Many regards
Thanks for your help but I tried making the links using [URL] tags but it does not work as a link it just shows up as tags. What do I do?
well no u can't use tags Smile coz we are typing HTML and not a mybb message so use this

<a href="http://techex.techindo.com" target="_blank">TECHEX</a>

Regards
MMouse Wrote:Thanks for your help but I tried making the links using [URL] tags but it does not work as a link it just shows up as tags. What do I do?
I almost 100% sure that you have to use html.
<a href="http://community.mybboard.net/">MyBB Support Forum</a>
Oh ok thank you Smile.