The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Return X amount of new posts regardless of date
Maybe Im not looking in the wrong place. All Im looking for is the code to return x amount of new posts regardless of date.
So a basic link that could return say 50 or 100 of the latest posts. Thanks.... |
#2
|
|||
|
|||
I think this will do it:
Options > General Settings > Database Read Marking Limit = 100 Options > Message Searching Options > Maximum Search Results to Return = 100 Whatever you set for the second setting will affect all types of searches. |
#3
|
||||
|
||||
Thanks but that's not what Im looking for.
That limited the results to that number when someone does a regular search. Im looking for a link that simply returns the last 50 or 100 posts regardless of time frame and without using the search box. Kind of like the Whats New in the navbar but for a set amount of posts rather then since your last visit. |
#4
|
|||
|
|||
i haven't looked up the database table names and field names, so that code below won't work out of the box. But something very similar to that should work:
SELECT * FROM posts WHERE parentid > 0 ORDER BY dateline DESC LIMIT 100 (parentid - or whatever it is actually called in the database excludes threads). No time to start phpmyadmin in order to check the real names, sorry. Hope that code helps anyway. |
#5
|
||||
|
||||
Thanks Mooff:up:
The only problem is that I havent a clue how to turn that into a clickable button. Can someone decode this for me . |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|