Skip to content

Instantly share code, notes, and snippets.

@BluePraise
Created February 16, 2017 08:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BluePraise/d8b3f9561556879db689408d6bf931ca to your computer and use it in GitHub Desktop.
Save BluePraise/d8b3f9561556879db689408d6bf931ca to your computer and use it in GitHub Desktop.
How to remove sorting from the WooCommerce Storefront Theme
<?php
add_action('init','delay_remove');
function delay_remove() {
remove_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment