Advertisement
Misplon

Remove and re-add SO North WC breadcrumbs

Feb 22nd, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. function siteorigin_north_remove_wc_breadcrumbs() {
  2.     remove_action( 'woocommerce_single_product_summary', 'siteorigin_north_breadcrumbs', 6, 0 );
  3.     remove_action( 'woocommerce_before_shop_loop', 'siteorigin_north_breadcrumbs', 6, 0 );
  4. }
  5. add_action( 'after_setup_theme', 'siteorigin_north_remove_wc_breadcrumbs' );
  6.  
  7. function siteorigin_north_child_add_wc_breadcrumbs() {
  8.     if ( class_exists( 'Woocommerce' ) && ( is_woocommerce() || is_cart() || is_checkout() ) ) {
  9.         ?><div class="breadcrumbs">
  10.             <?php bcn_display(); ?>
  11.         </div><?php
  12.     }
  13. }
  14. add_action( 'siteorigin_north_content_top', 'siteorigin_north_child_add_wc_breadcrumbs' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement