View Full Version : New Posts Options
JustAskJulie
04-09-2012, 07:08 PM
On previous versions I had a drop-down list for "new posts" that gave options for new posts - since last visit
- in the last day
-last 3 days
- last week.
I'm trying to figure out how to re-implement this (or, preferably, find a mod that does it) in vb 4. It's something my members use a lot and one of their first complaints about the upgrade.
Is it this your looking for?
https://vborg.vbsupport.ru/showthread.php?t=230302
JustAskJulie
04-10-2012, 05:28 PM
Is it this your looking for?
https://vborg.vbsupport.ru/showthread.php?t=230302
No, already have that.
I would like a seperate menu option on the submenu for forums that says "new posts" then with a drop down under it that has the options for:
"since last visit" - shows new posts since their last visit
"today's posts" - shows todays new psots
"last 3 days" - shows new posts from the last 3 days
"last week" - shows new posts from the last week
Boofo
04-10-2012, 06:07 PM
I did one for my site but have not released it here as it is a paid mod. It's the Advanced Edition version of my User Links in Navbar for vB 4 mod.
SEOvB
04-10-2012, 06:26 PM
Hey There,
Try adding:
<!--begin edit-->
<vb:if condition="$show['member']">
<li class="popupmenu">
<a href="javascript://" class="popupctrl">New Posts</a>
<ul class="popupbody popuphover">
<li><a href="search.php?{vb:raw session.sessionurl}do=getnew&contenttype=vBForum_P ost">Since Last Visit</a></li>
<li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&contenttype=vBForum _Post">Today's Posts</a></li>
<li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&contenttype=vBForum _Post&days=3">Last 3 Days</a></li>
<li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&contenttype=vBForum _Post&days=7">Last Week</a></li>
</ul>
</li>
</vb:if>
<!--end edit-->
Just below {vb:raw template_hook.navbar_end} in the navbar template. Might work.
-Nick, SEOvB Developer
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.