• How can I increase my shop page from only 12 product items to a larger number of items per page?

    Thanks,

    Semay Studio

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • You can increase the number of products per page on the shop by adding the below code in theme function.php file.
    <?php
    add_filter( ‘loop_shop_per_page’, ‘new_loop_shop_per_page’, 20 );
    function new_loop_shop_per_page( $cols ) {
    // Return the number of products you wanna show per page.
    $cols = 16;
    return $cols;
    }
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Shop Page’ is closed to new replies.