Hi @aliqamarvpn ,
your fix works for me, but i had to resave some pages in order to fix the breadcrumbs structure.
Thank you
Hi @takanakui,
thank you for your reply.
I’ve found another way to remove the css, putting this in my function.php:
add_action( 'wp_enqueue_scripts', 'mywptheme_child_deregister_styles', 11 );
function mywptheme_child_deregister_styles() {
wp_dequeue_style( 'menu-image' );
}