jmccole83
2/27/2018 - 9:26 AM

WooCommerce | Remove results count and default sort

Remove the results counter and default from WooCommerce, just the add the below snippet to functions.php.

// 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 );