Note that this is the default WooCommerce behavior when it comes to the dropdown sorting menu items on the shop page.
If you need to remove one of the items (e.g. price), you can do so by following these steps:
Step 1 - First you need to locate the PHP file. In case you want to use the FTP, here’s the path:
wp-content\themes\bridge\functions.php
You can also reach the functions.php file from Appearance > Theme Editor options
Step 2 - Next you should open the functions.php file and try pasting this code in the file:
/**
* Edit WooCommerce dropdown sorting menu items on the shop page.
* Disable: price, price-desc
* Other Options: menu_order, popularity, rating, date, price, price-desc
*/
function alter_woocommerce_catalog_orderby( $orderby ) {
unset( $orderby['price'] );
unset( $orderby['price-desc'] );
return $orderby;
}
add_filter( 'woocommerce_catalog_orderby', 'alter_woocommerce_catalog_orderby', 20 );
Your file should look something like this:
And if you open the file from Appearance > Theme Editor, it will look like this:
Finally, this is what the end result would look in your frontend: