Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #213500

    Hi,

    In order to sort the portfolio items on a portfolio page, I installed the plugin: post types order.
    (advised here: https://kriesi.at/support/topic/sorting-portfolio-grid/)
    This works great, only the breadcrumbs don’t work correct anymore. It displays a category in which the portfolio item isn’t even placed.

    I’ve disabled the plugin, but the problem stays. I’ve tried other sorting plugins as well, but this didn’t help either.

    Every portfolio item is in 1 category max. Is there a way the theme always choses an actual category?

    Thank you in advance!

    #213665

    Hey Trender!

    Please try to add this at the very bottom of functions.php:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Best regards,
    Ismael

    #213975

    Hi Ismael,

    Thanks, that did the trick!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumbs doesn't work correct after portfolio sorting’ is closed to new replies.