Reputation: 6900
I am using woocommerce and on products page my sorting is like this
I dont want last two sorting, Sort by price : low to high & Sort by price : high to low
please help...
Upvotes: 0
Views: 964
Reputation: 14913
Add the following CSS to your stylesheet
.orderby > option[value^="price"] {
display: none;
}
Upvotes: 1