Hi all,
I would like to remove some options (relevance, custom) from products sorting panel. Could you please tell me how can I?
Thank you,
Andu
Hey andupro,
Thank you for the inquiry.
You can add this code in the functions.php file to adjust the options in the sorting dropdown.
/*
* Modify the default WooCommerce orderby dropdown
* Options: menu_order, popularity, rating, date, price, price-desc
* In this example I'm removing date & product id but you can remove any of the options
*/
function avf_mod_woocommerce_catalog_orderby( $orderby ) {
unset($orderby["relevance"]);
unset($orderby["custom"]);
return $orderby;
}
add_filter( "avf_wc_product_order_dropdown_frontend", "avf_mod_woocommerce_catalog_orderby", 20 );
Best regards,
Ismael
Hi Ismael,
Great. It works.
Thank you,
Andu