MyBB Community Forums

Full Version: How to i add quicklinks?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i add quick links on the top of my forum like mybb.com

Example: View New Posts | View Today's Posts | Private Messages
ACP >> Templates >> Your template >> Header Templates >> header_welcomeblock_member

Edit what ever you want to there.

That's assuming those links are in the same place as the MyBB theme.
(2012-05-30, 01:28 AM)wethegreenpeople Wrote: [ -> ]ACP >> Templates >> Your template >> Header Templates >> header_welcomeblock_member

Edit what ever you want to there.

That's assuming those links are in the same place as the MyBB theme.

My current theme is different and doesnt have links like that. I would like to add links like the one's here to my forum.

My Forum
http://codmedia.net/
Did you look in header_welcomeblock_member ?
The code for those links is;
<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a> | <a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a> | <a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}

You may paste this code in your theme's "header_welcomeblock_member" template.
Oh he wanted to add the links. I was thinking he just wanted to edit them. My bad.