MyBB Community Forums

Full Version: New Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey Guys,
How do I add a link for people to view 'New Posts' ?
"New Posts" is only available for registred users. You can't add a link for guests.
(2012-01-28, 05:45 PM)Harest Wrote: [ -> ]"New Posts" is only available for registred users. You can't add a link for guests.

What is the link I should give for registered users?
That's the link in the "header_welcomeblock_member template".

<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>

if you want to use it outside mybb you have to change it a bit. e.g. like this:

<a href="http://www.domain.com/forum/search.php?action=getnew">New Posts</a>
(2012-01-28, 05:51 PM)Harest Wrote: [ -> ]That's the link in the "header_welcomeblock_member template".

<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>

if you want to use it outside mybb you have to change it a bit. e.g. like this:

<a href="http://www.domain.com/forum/search.php?action=getnew">New Posts</a>

You Sir, are a helpful person.
you're welcome Smile