• Hi i am going to use infinite scroll with plugin storefront woocommerce customiser so i want to disable pagination that is displayed in the upper right corner

    I hide it with CSS:
    storefront-sorting {
    display: none;
    }

    Is there another way? with funtions.php etc…

    Thanks

Viewing 1 replies (of 1 total)
  • Hey,

    Sure, you can try something like;

    add_action( 'init', 'jk_remove_storefront_product_pagination' );
    function jk_remove_storefront_product_pagination() {
    add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 					30 );
    }

    Thanks

Viewing 1 replies (of 1 total)

The topic ‘Hide or disable pagination’ is closed to new replies.