Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1222635

    Hello, Is there a way I can remove the ‘Blog’ link from the breadcrumbs only? I could remove home by following another thread.

    Currently: You are here:News/Blog/Events/BPS Starts New Academic Year Online

    How I want it:
    You are here:News/Events/BPS Starts New Academic Year Online

    The ‘Blog’ link and any / completely gone.
    Link to website in the private content section.

    Have used this code so far:
    add_filter(‘avia_breadcrumbs_trail’, ‘avia_breadcrumbs_args_mod’, 10, 2);
    function avia_breadcrumbs_args_mod($trail, $args){
    unset($trail[0]);
    return $trail;
    }

    Thanks,
    Suums

    #1222869

    Hey Sumeru,

    So to clarify use you just want news/events

    Best regards,
    Jordan Shannon

    #1222898

    Yes that’s correct.

    #1223274

    Hi @Jordan – any luck?

    Regards,
    Suums

    #1223453

    Hi,

    Apologies for the delay, add this to quick css:

    .breadcrumb-trail span:nth-child(4),
    .breadcrumb-trail span:nth-child(5){
    display:none!important;
    }

    Best regards,
    Jordan Shannon

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.