Tagged: ,

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

    Hi Guys,

    I found the thread to the same toic and Problem I have.
    In all Category / Archive pages, the Breadcrumb shows the Link to the Shop page Twice.

    But this solution unfortunately not working for me :-/

    #422702

    AH Sorry guys.. I tried the first Solution…

    This as working for me

    
       if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            foreach($trail as $key => $data)
            {
                if(strpos($data,'href="http://link your site.de/shop-produkte-uebersicht/"') !== false) unset($trail[$key]);
            }
            return $trail;
        }
         add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    
    #422895

    Hi!

    I’m not sure if I understand, did you get it fixed or do you still have a problem?

    Cheers!
    Rikard

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