Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. // Modify the default WooCommerce orderby dropdown
  3. //
  4. // Options: menu_order, popularity, rating, date, price, price-desc
  5. // In this example I'm removing price & price-desc but you can remove any of the options
  6. function my_woocommerce_catalog_orderby( $orderby ) {
  7. unset($orderby["price"]);
  8. unset($orderby["price-desc"]);
  9. return $orderby;
  10. }
  11. add_filter( "woocommerce_catalog_orderby", "my_woocommerce_catalog_orderby", 20 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement