Two requests -
- Can you guys stop hardcoding the Sorting box and Showing [x] Results boxes that appear at the top of category browsing pages? None of the Woo-provided functions to remove these from the loop work because Pro puts them back in.
- Since the normal functions (shown below) do not work with Pro, do you have replacement functions that will do the same when using Pro?
// Remove the sorting dropdown from Woocommerce
remove_action( ‘woocommerce_before_shop_loop’ , ‘woocommerce_catalog_ordering’, 30 );
// Remove the result count from WooCommerce
remove_action( ‘woocommerce_before_shop_loop’ , ‘woocommerce_result_count’, 20 );
Thanks!