Guest User

Untitled

a guest
Mar 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_action( 'init', 'wcc_remove_woo_wc_breadcrumbs' );
  2. function wcc_remove_woo_wc_breadcrumbs() {
  3. if ( is_woocommerce() || is_cart() || is_checkout() ) {
  4. remove_action( 'woo_main_before', 'woo_display_breadcrumbs', 10 );
  5. }
  6. }
Add Comment
Please, Sign In to add comment