Hello,
I don’t understand why but the title of my posts appears twice in the breadcrumb : https://ibb.co/ga79Dz
how to fix this please ??
Hey plichart1,
Could you post a link to the page in question so that we can take a closer look please? Also please post admin login details in private as we might need backend access.
Best regards,
Rikard
Hello,
Here is an example of post page : https://www.idt.pf/technique/nouveaux-locaux/
With connexion info on private
Hi!
I added this code to your child theme functions.php to fix the issue:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
function avia_breadcrumbs_trail_mod( $trail, $args )
{
if ( is_single() )
{
unset($trail[1]);
}
return $trail;
}
Best regards,
Peter
Thanks a lot !
Hey!
Glad we could help you :)
Regards,
Peter