Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: How to change Page Numbers

$
0
0

I think this could work try this code, may be it works.

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;
}


Viewing all articles
Browse latest Browse all 3638

Trending Articles