Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to change Page Numbers


  • mynghecaocap
    Participant

    @mynghecaocap

    Hi everybody!
    Is it possible to change the number of pages in a topic? so i have a topic that have for example 200 posts. So i have Page 1 2 3… 10 11
    I want to change this in 1 2 3 4 5 6 7 8 9 10 11
    Here is my theme: https://www.mynghecaocap.vn/

    Ho can i do that?

Viewing 1 replies (of 1 total)

  • ericross
    Blocked

    @ericross

    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 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar