Hi Kriesi,
Brilliant theme, so well done to you and the team!
Two quick questions:
1. How can we remove the text ‘You are here’
Thank you in advance for your help, it is genuinely appreciated.
Kind regards,
Andy.
try this one:
.breadcrumb-title {
display: none !important;
}
Hi,
You can use some css to hide it
span.trail-before {
display: none!important;
}
Hope that helps
TJ
And to remove the previous / next arrows try…
#top .avia-post-nav {
display:none!important;
}
TJ
Hi!
Please add following code to Quick CSS in Enfold theme options under General Stylign tab
.breadcrumb-title {
display: none!important;
}
@tjswarbs78 and @guenni007, thanks :)
Best regards,
Yigit
There is a filter in Enfold to manipulate the breadcrump:
add_filter('avia_breadcrumbs_args', 'mmx_change_home_breadcrumb', 50, 1);
function mmx_change_home_breadcrumb($args){
$args['before'] = '';
return $args;
}
Yigit, Guenni007, tjswarbs78, mensmaximus!
Thank you so much guys for all your quick responses, I’m impressed and really appreciative. I’ll go and put these into place and thank you again guys, you’re the best! :)
Kind regards,
Andy.
Hi!
You are welcome Andy. It is great to have such helpful community :)
@mensmaximus Thanks! :)
Best regards,
Yigit
It’s terrific Yigit, best theme, support and community help I’ve found to date!
10/10 :)
Kind regards,
Andy.
Oh and I forgot there is a filter for the post navigation entries too:
add_filter( 'avia_post_nav_entries', 'mmx_remove_nav_entries', 10, 2 );
function remove_nav_entries( $entries, $settings ){
$entries = '';
return $entries;
}
btw. both filters can be used not only to remove things but to customize ;-)
Wow! Thank you very much mensmaximus!
It gets better and better, and you’re all so helpful.
You’re a star my friend :)