Per the Woocommerce Docs I have added this snippet in a child theme functions.php:
//Result Count
remove_action( ‘woocommerce_before_shop_loop’, ‘woocommerce_result_count’, 20 );
//Default Sorting
remove_action( ‘woocommerce_before_shop_loop’, ‘woocommerce_catalog_ordering’, 30 );
This works to remove the Result Count, but the Default Sorting is not being removed. I tried priority 10,20,30,40 , but none of them work.
Any thoughts?