Disable pagination in threads?
My community loves that our threads don't paginate and I'm with them. Nothing I hate more than having to remember what page a funny post was on or something. The "more posts" option is nice, but still not quite right. I'd rather have them all there right away - even when a thread exceeds 1,000 posts (caching saves the day)....
Is there a way to disable pagination all together? (V2)
Is there a way to disable pagination all together? (V2)
0
Comments
A better way would be to override the view /settings/advanced.php and replace line 9.
$Options = array('10' => '10', '20' => '20', '30' => '30', '50' => '50', '100' => '100');
With
$Options = array('10' => '10', '20' => '20', '30' => '30', '50' => '50', '100' => '100', '999999' => '999999');
Or something similar to have the max value that you cannot reach.