Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #190093

    Hi i want to replace the Theme’s breadcrumbs with Breadcrumbs NavXT.

    I saw something in this thread: https://kriesi.at/support/topic/integrate-plugin-breadcrumb-navxt/

    But it’s not the same theme and there is no reference to what file to edit.

    Can you help?

    #190512

    Hi basilicon!

    Open up enfold/enfold-functions.php and replace

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    

    with

    
    if($breadcrumb) $additions .= bcn_display(true);
    
    

    Best regards,
    Peter

    #190523

    Thank you Peter

    Is there a possibility to do this in my child-theme?
    I rather not mess with the files in the enfold folder if possible, and i’d like it to work even when i have updated the theme.

    #191360

    Hey!

    Yes, you need to insert the entire avia_title() function into the child theme functions file. Search for

    
    if(!function_exists('avia_title'))
    

    and copy the function code. Then insert it at the very bottom of the child theme functions.php file. Afterwards change the line I mentioned in my last post.

    Best regards,
    Peter

    #191795

    Thanks! That worked!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Replace Theme breadcrumbs’ is closed to new replies.