Created
December 4, 2020 10:40
-
-
Save yousufansa/117f063281989d8ee425344339d38180 to your computer and use it in GitHub Desktop.
Electro - Hide Breadcrumb on Single Product Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ec_child_hide_breadcrumb_in_shop_page( $show ) { | |
if ( is_product() ) { | |
$show = false; | |
} | |
return $show; | |
} | |
add_filter( 'electro_show_breadcrumb', 'ec_child_hide_breadcrumb_in_shop_page', 40 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.single-product .site-content-inner { | |
margin-top: 3em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment