Hareesh
Hareesh

Reputation: 6900

WooCommerce product sorting, remove one argument Sort by price

I am using woocommerce and on products page my sorting is like this my current site

I dont want last two sorting, Sort by price : low to high & Sort by price : high to low

please help...

Upvotes: 0

Views: 964

Answers (1)

Anand Shah
Anand Shah

Reputation: 14913

Add the following CSS to your stylesheet

.orderby > option[value^="price"] {
    display: none;
}

Upvotes: 1

Related Questions