Hi @nerium,
You can locate the code which adds the pagination in this file below and use a remove_action() in a child themes functions.php file to remove that.
https://github.com/woocommerce/storefront/blob/8c510114a14f622e2219178a47c7da6d11556cb7/inc/woocommerce/storefront-woocommerce-template-hooks.php
remove_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 );
I hope this helps.
Hi Stuart,
Thank you for the code to remove pagination. Pagination works very strangely on my site, and I’d like to remove it altogether.
I am not using the WooCommerce Storefront theme, but am instead using Thesis Classic Responsive. In my case would the code read?:
remove_action( ‘woocommerce_before_shop_loop’, ‘thesis_woocommerce_pagination’, 30 );
I am still very new to WordPress and WooCommerce and Thesis, but am learning in leaps and bounds thanks to folks like you who are so awesome to share your knowledge.
Thanks!