Tagged: bbpress
Hi I am seeing an issue with page number positioning on topics that span over 1 page.
The numbers on the forum index are fine, it seems to be only on topic pages.I have shared the link to my dev site in the private section below so you can see what I am referring to. I notice that in addition to the display error at the top, the page numbers are not appearing at the bottom of the page.
Hey shanhard!
1- Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single-topic #bbpress-forums {
margin-top: 0;
}
2- They do not show up on the bottom by default. If you would like to show, please add following code to Functions.php file in Appearance > Editor
add_action( 'bbp_template_after_single_topic','bbp_bottom_pagination' );
function bbp_bottom_pagination() {
$output = bbp_get_template_part( 'pagination', 'replies' );
return $output;
}
Best regards,
Yigit
Brilliant, thanks for the fast answer, works great.