The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
display all threads on a specif forum in one page
Anyone know how to display all threads in a single page for a specific forum/sub forum?
|
#2
|
||||
|
||||
Go to plugin manager -> add new plugin
hook: forumdisplay_start title: Show all Threads in Forum Execution Order: 5 Code: Code:
if ($foruminfo['forumid'] == 57) $perpage = $vbulletin->options['maxthreads'] = 200; If you want to do this for multiple forums use: Code:
if ( in_array($foruminfo['forumid'], array(57, 58, 59))) $perpage = $vbulletin->options['maxthreads'] = 200; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|