Tagged: breadcrumb
Hello,
When I’m on an article page, the breadcrumb looks like this :
You are here : Home / Title of the article / Category name / Title of the article
Is it possible to exclude the first Title of the article ?
Thanks in advance for your help !
Hey intweb24,
Are you using the latest version of Enfold?
Can you post a link to the page showing that breadcrumb? so we can try to check further.
Best regards,
Nikko
Hello,
Site is under construction, I give you admin access in private reply
oups
Hey!
I added this code to your child theme functions.php to adjust the breadcrumb:
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
Nice, thank you !
– – – –
EDIT : In fact I realize I have an other problem on the search/results page when I use the search funciton from the navbar.
Here the title of the first result appears in the breadcrumb.
Do I need to make an other post for this question ?
Hi,
Great, glad I could help you :)
Best regards,
Dude