The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
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; |
![]() |
|
|