id = 'breadcrumbs'; $this->short_desc = __( 'Breadcrumbs', 'woocommerce-jetpack' ); $this->desc = __( 'Customize WooCommerce breadcrumbs.', 'woocommerce-jetpack' ); $this->link_slug = 'woocommerce-breadcrumbs'; parent::__construct(); if ( $this->is_enabled() ) { // Hide Breadcrumbs if ( 'yes' === apply_filters( 'booster_option', 'no', get_option( 'wcj_breadcrumbs_hide', 'no' ) ) ) { add_filter( 'woocommerce_get_breadcrumb', '__return_false', PHP_INT_MAX ); add_action( 'wp_head', array( $this, 'hide_breadcrumbs_with_css' ) ); add_action( 'wp_loaded', array( $this, 'hide_breadcrumbs_by_removing_action' ), PHP_INT_MAX ); } // Home URL if ( 'yes' === get_option( 'wcj_breadcrumbs_change_home_url_enabled', 'no' ) ) { add_filter( 'woocommerce_breadcrumb_home_url', array( $this, 'change_home_url' ), PHP_INT_MAX ); } } } /** * change_home_url. * * @version 2.9.0 * @since 2.9.0 */ function change_home_url( $_url ) { return get_option( 'wcj_breadcrumbs_home_url', home_url() ); } /** * hide_breadcrumbs_with_css. * * @version 3.2.2 * @since 2.9.0 * @todo (maybe) option to add custom identifiers * @todo (maybe) add more identifiers */ function hide_breadcrumbs_with_css() { $identifiers = array( '.woocommerce-breadcrumb', '.woo-breadcrumbs', '.breadcrumbs', '.breadcrumb', '#breadcrumbs', '.breadcrumbs-wrapper', ); echo ''; } /** * hide_breadcrumbs_by_removing_action. * * @version 2.9.0 * @since 2.9.0 * @see `add_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );` */ function hide_breadcrumbs_by_removing_action() { remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 ); } } endif; return new WCJ_Breadcrumbs();