Forum component only shows 10 replies per topic

Rishi B Posted in Component Development 6 years ago

I've had the forum component for a while and for the most part it works fine, but topics with more 10 replies are only showing the first 10. It gets the correct number of replies and the correct last reply on the category index page, so they're clearly being saved in the database, they just don't show up when the topic is viewed. Anyone else encounter this, or know how to fix it?

Replies
us Rishi B Replied 6 years ago

I think the way to fix this might be as simple as just setting page_limit to false in the params array. Will test shortly and report back.

yep, that worked. pass array('page_limit' => false) as the 2nd argument to getTopics()
in Forum/plugins/default/forum/category/view.php and as the 2nd arg to getReplies() in Forum/plugins/default/forum/topic/view.php.