May 11, 2024 at 1:09 pm
#1442950
Hey robertbwc,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function my_woocommerce_catalog_orderby( $orderby ) {
unset($orderby["default"]);
unset($orderby["menu_order"]);
unset($orderby["price"]);
unset($orderby["date"]);
unset($orderby["popularity"]);
unset($orderby["rating"]);
unset($orderby["rand"]);
unset($orderby["relevance"]);
return $orderby;
}
add_filter( "avf_wc_product_order_dropdown_frontend", "my_woocommerce_catalog_orderby", 20 );
it will remove all except Name & ID
Best regards,
Mike