Forums
-
- Forum
- Posts
-
- Installation
- 28,406
- Troubleshooting
- 62,342
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,953
- Showcase
- 3,254
-
look for these lines (20-23) in topic.php
if ( !$bb_db_override ) :
$posts = get_thread( $topic_id, $page );
$forum = get_forum ( $topic->forum_id );
change to
if ( !$bb_db_override ) :
$posts = get_thread( $topic_id, $page, 1 );
$forum = get_forum ( $topic->forum_id );
get_thread
function changed