Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #994149

    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 ??

    #994247

    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

    #994295

    Hello,
    Here is an example of post page : https://www.idt.pf/technique/nouveaux-locaux/
    With connexion info on private

    #994316

    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

    #994528

    Thanks a lot !

    #994532

    Hey!

    Glad we could help you :)

    Regards,
    Peter

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Problem with Bread crumb : double display’ is closed to new replies.