Moderator
t-p
(@t-p)
breadcrumb is not a default feature of the WP core.So, tell us:
– Are you using a plugin for this feature? Yes? What’s the full name of this plugin? Where did you download it from?
– Or, is this a feature of your active theme? Yes? What’s the full name of this theme? Where did you download it from?
@t-p thank you for the response and your time.
I have installed woocommerce plugin and when I enter the woocommerce menu in the wp-admin, it is showing breadcrumbs. Which I would like to remove. Please see the below link for reference.
View post on imgur.com
I found a solution online and it’s working.
// Disable Woocommerce Header in WP Admin
add_action('admin_head', 'Hide_WooCommerce_Breadcrumb');
function Hide_WooCommerce_Breadcrumb() {
echo '<style>
.woocommerce-layout__header {
display: none;
}
.woocommerce-layout__activity-panel-tabs {
display: none;
}
.woocommerce-layout__header-breadcrumbs {
display: none;
}
.woocommerce-embed-page .woocommerce-layout__primary{
display: none;
}
.woocommerce-embed-page #screen-meta, .woocommerce-embed-page #screen-meta-links{top:0;}
</style>';
}
Credit: https://stackoverflow.com/questions/57321805/remove-header-from-woocommerce-admin-panel/60888959#60888959