Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 4, 2020 10:40
Show Gist options
  • Save yousufansa/117f063281989d8ee425344339d38180 to your computer and use it in GitHub Desktop.
Save yousufansa/117f063281989d8ee425344339d38180 to your computer and use it in GitHub Desktop.
Electro - Hide Breadcrumb on Single Product Page
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 );
.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