Skip to content

Instantly share code, notes, and snippets.

@rayrutjes
Created January 4, 2017 18:32
Show Gist options
  • Save rayrutjes/2402d3957fc99bd22773d64d3e7e63a0 to your computer and use it in GitHub Desktop.
Save rayrutjes/2402d3957fc99bd22773d64d3e7e63a0 to your computer and use it in GitHub Desktop.
Remove sorting options from WooCommerce
<?php
add_filter( 'woocommerce_catalog_orderby', function( $wc_options ) {
$remove_sort_options = array(
'popularity',
'rating',
'date',
'price',
'price-desc',
);
foreach ( $remove_sort_options as $option ) {
if ( isset( $wc_options[$option] ) ) {
unset( $wc_options[$option] );
}
}
return $wc_options;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment