Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #521018

    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.

    #521054

    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

    #521065

    Brilliant, thanks for the fast answer, works great.

    #521067

    Hi!

    You are welcome, glad we could help :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Page Numbering on bbpress topics’ is closed to new replies.