Gday Enfold users
I’d like to remove woocommerce product sorting, and all the usual functions aren’t working,eg:
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
remove_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
Is there something Enfold specific that I need to do?
I’d prefer a function, not just a CSS display property.
Thanks for any help, much appreciated.
cheers
Darryl
Hi Darryl!
Please add following code to Functions.php file in Appearance > Editor
function avia_woocommerce_frontend_search_params()
{
return;
}
Cheers!
Yigit