I tried to deactivate child theme and… then breadrumbs are OK!
But I don’t understand, my child theme is very basic.. I’ve tried to deactivate all archives changed and keeping only the style.css and functions.php files. But by this way breadcrumbs don’t work ok.
The content of these files is standard… I paste it.
Style.css
/*
Theme Name: evolve child theme
Theme URI: https://www.websitebundles.com/
Description: Theme by Site <a href=\"https://childthemegenerator.com/\">https://childthemegenerator.com/</a>
Author: WebsiteBundles
Author URI: https://childthemegenerator.com/
Template: evolve
Version: 1.0.0
Text Domain: evolve-childNEW
-------------------------------------------------------------- */
/* Aqui empieza la personalizacion del tema
------------------------------------------------------- */
functions.php:
<?php
/* CODIGO ACTIVACION PLANTILLA CSS TEMA PADRE*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style')
);
}
/* Cambiar texto de read more
function be_excerpt_more( $more ) {
return 'Leer más';
}
add_filter( 'excerpt_more', 'be_excerpt_more' );*/
?>
Any suggestion? Thanks.