Tagged: breadcrumbs
Hi,
I am having this breadcrumbs problem with the portfolio. Do you have any idea how I could have
Home > portfolio category > portfolio page when using the grid shortcode?
If not possible within the theme, do you know a plugin that follow the menu’s navigation? Thanks for your help !
Olivia
Hey oliviad!
Open up functions.php and add following code at the very bottom of the file
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
function avia_remove_portfolio_breadcrumb(){
remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
}
Best regards,
Peter
That worked for me — thank you!!