MyBB Community Forums

Full Version: New threads since 2,3,5, week, ago feature?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a MyBB feature that allows one to view new threads posted at various time intervals?
For example, I remember reading something a few days ago on the forum and I would like to see all new threads posted in the last 3 days, or maybe 5 days ago.
http://community.mybb.com/search.php?act...ily&days=5

that will fetch the posts that were posted in last 5 days....
I can't expect users to type that in.
Is there a plug-in that will allow a choice of how many days to search?
You could edit templates to add links to various days somewhere, or a form to allow them to type a number:

<form action="/search.php" method="get">
<input type="hidden" name="action" value="getdaily"></input>
<label for="days">Number of days: </label><input type="text" name="days"></input>
<input type="submit" value="Find posts"></input>
</form>
Untested, but theoretically should work
Wow!  Very good!
It worked in a trial run.  
Perfection will be achieved when I can make it work as a drop down menu under "View New Posts".
(2014-08-22, 04:35 PM)mmadhankumar Wrote: [ -> ]http://community.mybb.com/search.php?act...ily&days=5

that will fetch the posts that were posted in last 5 days....

Okay got it!  This method combined in with the "drop down menu" modification works!
I've got it working on my localhost machine:
[attachment=32518]
If a user remembers something posted from a few days or weeks ago, they can do a quick search.