Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created April 18, 2015 10:55
Show Gist options
  • Save fovoc/5b5b0e7eaa505742560e to your computer and use it in GitHub Desktop.
Save fovoc/5b5b0e7eaa505742560e to your computer and use it in GitHub Desktop.
Shoestrap 3 Woo child - remove breadcrumbs
<?php
/**
* Remove default WooCommerce breadcrumbs from Shoestrap Woo child theme
*
* How to use:
* Save this file as `wp-contents/mu-plugins/remove-woocommerce-breadcrumbs.php`
*/
function remove_woocommerce_breadcrumb() {
remove_action( 'shoestrap_pre_wrap', 'woocommerce_breadcrumb', 99 );
}
add_action('wp','remove_woocommerce_breadcrumb');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment