wpgenie

removes double sort drop down menus on StoreFront theme when Simple Auctions is activated

Oct 2nd, 2020
2,165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /* removes double sort drop down menus on StoreFront theme when Simple Auctions is activated */
  2.  
  3. add_action( 'init', 'custom_storefront_remove_ordering',90);
  4. function custom_storefront_remove_ordering(){
  5.     remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
  6. }
Advertisement
Add Comment
Please, Sign In to add comment