MyBB Community Forums

Full Version: remove getnew & getdaily from row
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All

In every window a row is being shown, containing links to User CP, View new Posts, View Today's Posts and Private messages.

How and where can I remove the links to View new Posts and  View Today's Posts

Thanks in advance, I'm sure you can help me out. Smile
header_welcomeblock_member template contains {$searchlink} --- it can be removed

if above template does not have {$searchlink} then look for code like below & remove
<li><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></li>

[MyBB Templates System]
@.m.

You are quite right.
I found the code I had to disable.
I'm pleased with the result.

Thank you so much.