PDA

View Full Version : Mini Mods - Forum New Threads (New Threads Button) in Navbar,..


Pakblogger
11-12-2015, 10:00 PM
Dear All,

in Vbulletin 4.2.3, & Vbulletin 4.x.x There is no option to search ,All Forum New Threads,


Here the the procedure how to do that,. this can be used in navigation Manager to search all new threads in the forum.

how to use:
1. Go To Admin Control Panel

2. Go to Navigation Manager

3. Click Add Tab

4. Type "New Threads" in Title (without commas)

5. in Target Url paste the following URL or code

http://www.yourforum.com/search.php?do=getnew&contenttype=vBForum_Post&exclude=0&nocache=0&sortby=threadstart&exclude=1,2,3
don't forget to the change the forum name and Exclude forum ids, (at the End of the Code)
where: &exclude=1,2,3
(Exclude forum id means from which forum you don't want to show threads)


6. Activate : Yes and Save

that's all,. you have done it,..

Cheers..
working fine in Vbulletin 4.2.3

153658

Alan_SP
11-14-2015, 03:02 PM
In your code you have exclude two times, first one is exclude=0.

Pakblogger
11-15-2015, 04:50 AM
In your code you have exclude two times, first one is exclude=0.

exclude=0 is required,. but the last one is optional ,..


if you don't want to exclude forums

http://www.yourforum.com/search.php?do=getnew&contenttype=vBForum_Post&exclude=0&nocache=0&sortby=threadstart

the one
11-16-2015, 07:34 PM
That only shows 2 pages of threads

If i wanted to show 200 threads what would the code be

Cheers

Seven Skins
11-16-2015, 09:59 PM
^ Edit the max search results option in admin cp by editing "Message searching option"

@pakblogger:

You only need to put this code in the button we don't need http://www.... or two exclude options like Alan_SP said.



search.php?do=getnew&contenttype=vBForum_Post&nocache=0&sortby=threadstart&exclude=1,2,3


.

ikopylov
11-17-2015, 08:19 AM
&exclude=1,2,3
1,2,3 — This is a list of numbers of forums to be excluded from display
Replace with your own, or do not use is

ikopylov
11-17-2015, 08:27 AM
You only need to put this code in the button we don't need http://www.....

http://www.yourforum.com/search.php = {vb:raw vboptions.bburl}/search.php

Pakblogger
11-19-2015, 04:58 AM
^ Edit the max search results option in admin cp by editing "Message searching option"

@pakblogger:

You only need to put this code in the button we don't need http://www.... or two exclude options like Alan_SP said.



search.php?do=getnew&contenttype=vBForum_Post&nocache=0&sortby=threadstart&exclude=1,2,3


.

its depends,. one time its not worked with me,. without www

you can try both

http://www.yourforum.com/search.php?do=getnew&contenttype=vBForum_Post&exclude=0&nocache=0&sortby=threadstart

or

search.php?do=getnew&contenttype=vBForum_Post&exclude=0&nocache=0&sortby=threadstart

Pakblogger
11-19-2015, 05:02 AM
&exclude=1,2,3
1,2,3 ? This is a list of numbers of forums to be excluded from display
Replace with your own, or do not use is

Exactly