Site logo

[Support request] change pagination on archive page

Home Forums Support [Support request] change pagination on archive page

Home Forums Support change pagination on archive page

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

    I want to change my pagination on the archive pages to look like this:

    Check image

    Please tell me how to achieve this.

    #2412402
    David
    Staff
    Customer Support

    Hi there,

    1. Add this PHP Snippet to increase the number of mid numbers in the pagination:

    add_filter( 'generate_pagination_mid_size','tu_increase_pagination_numbers' );
    function tu_increase_pagination_numbers() {
        return 3;
    }

    Change the 3 to the amount you require.

    2. Add this PHP Snippet to change the next and previous text:

    
    add_filter( 'generate_next_link_text', function() {
        return 'Next';
    } );
    add_filter( 'generate_previous_link_text', function() {
        return 'Previous';
    } );

    3. Add this CSS:

    
    #nav-below .nav-links > *:not(.dots) {
        display: inline-flex;
        justify-content: center;
        margin: 0;
        padding: 0 10px;
        line-height: 40px;
        min-width: 40px;
        border-radius: 6px;
        background-color: #f00;
        color: #000;
    }
    #nav-below .nav-links > *:not(.dots):hover,
    #nav-below .nav-links .current {
        background-color: #00f;
        color: #fff;
    }
    #2412803
    Shami

    Thanks for the help.

    #2412828
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.