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?
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
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.
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
Thanks! That worked!