Advertisement
lorro

WooCommerce - Customise shop orderby options

Jan 9th, 2017
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. // Edit WooCommerce dropdown menu item of shop page
  2. // Default options: menu_order, popularity, rating, date, price, price-desc
  3.  
  4. add_filter( "woocommerce_catalog_orderby", "custom_catalog_orderby", 20 );
  5. function custom_catalog_orderby( $orderby_options ) {
  6.   unset( $orderby_options["price"] );
  7.   unset( $orderby_options["price-desc"] );
  8.   return $orderby_options;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement