#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
Enfold Support 5734

Best regards,
Mike