MyBB Community Forums
"View New Threads" option - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: "View New Threads" option (/thread-145980.html)



"View New Threads" option - ALUXi33 - 2013-09-27

Does anyone have the code for "View New Threads"? I want to add it to my Header.

Thank you.


RE: "View New Threads" option - Arbaz - 2013-09-27

You could use the following:

<a href="{$mybb->settings['bburl']}/search.php?action=getnew&showresults=threads">View New Threads</a>



RE: "View New Threads" option - Jovan J. - 2013-09-27

http://community.mybb.com/thread-65220.html

Edit: Ninja'd


RE: "View New Threads" option - ALUXi33 - 2013-09-27

(2013-09-27, 07:02 PM)Arbaz Wrote: You could use the following:

<a href="{$mybb->settings['bburl']}/search.php?action=getnew&showresults=threads">View New Threads</a>

Didn't quite work. It's still missing a thread I started this morning.


RE: "View New Threads" option - Jovan J. - 2013-09-27

Try this maybe as Tim wrote in tutorial:

<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">View my threads</a>



RE: "View New Threads" option - ALUXi33 - 2013-09-27

(2013-09-27, 07:30 PM)Jovan J. Wrote: Try this maybe as Tim wrote in tutorial:

<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">View my threads</a>

I'm looking for View "New" threads not "My" threads.


RE: "View New Threads" option - Arbaz - 2013-09-27

(2013-09-27, 07:17 PM)ALUXi33 Wrote:
(2013-09-27, 07:02 PM)Arbaz Wrote: You could use the following:

<a href="{$mybb->settings['bburl']}/search.php?action=getnew&showresults=threads">View New Threads</a>

Didn't quite work. It's still missing a thread I started this morning.
Create a new thread and check if it shows under "New Threads".