PDA

View Full Version : How do I add "New Posts" to the forumhome?


agent781
06-19-2008, 02:54 AM
I started using a new style for my forum, but instead of having "New Posts" the option is for "Today's Posts". A few of my users are upset about the change, so I'm hoping I can replace the function of Todays Posts with New Posts.

Is there anyway I can do this? Thanks!

calorie
06-19-2008, 03:49 AM
Check the original vB navbar template for what you need:

<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</if>

Tweak in your skin as desired.

agent781
06-19-2008, 04:41 PM
So I make these changes to the navbar on the default template?

Sorry, I'm still new to this :D