DigitalRefresh
9/1/2019 - 2:28 PM

Shop: Remove Custom Sorting Option #woo #hide

//Remove Default Sorting Option to WooCommerce Shop

// DEFAULT SORTING OPTIONS:
// 'menu_order' => __( 'Default sorting', 'woocommerce' ),
// 'popularity' => __( 'Sort by popularity', 'woocommerce' ),
// 'rating'     => __( 'Sort by average rating', 'woocommerce' ),
// 'date'       => __( 'Sort by newness', 'woocommerce' ),
// 'price'      => __( 'Sort by price: low to high', 'woocommerce' ),
// 'price-desc' => __( 'Sort by price: high to low', 'woocommerce' ),

  add_filter( 'woocommerce_catalog_orderby', 'remove_sorting_option_woocommerce_shop' );
   
  function remove_sorting_option_woocommerce_shop( $options ) {
  \!h   unset( $options['__rating__'] );   
     return $options;
  }