Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #490306

    Hello,
    The crumb trail for events is duplicating on Event pages.
    It reads: Home / Events / Events / (event name)
    I don’t have any special settings for these pages, and can’t figure out how to remove the extra Events item. Can you take a look?
    Thanks!

    #490771

    Hey kristenangel,

    Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.

    Regards,
    Rikard

    #490819

    Thanks!

    #492398

    Hi! Bumping this so it doesn’t get lost in the mix.

    #492434

    Hey!

    Can you please update Enfold to the latest version 3.3.2 firstly – kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #492458

    Just did. Also made sure I was on the latest version of WP. The double “events” category is still appearing.

    #492870

    Hey!

    can you activate a default WordPress theme and check if it’s happening there as well? let us know about your results.

    Also make sure you have the correct settings in Settings->Permalinks

    Best regards,
    Andy

    #493216

    The permalinks are set at Post Name.

    Changing the theme to a default WordPress doesn’t seem relevant because it does not include the curmbtrail in the top right of the page, as the Enfold theme does. Regardless, I tested in 2015 and (as expected) nothing showed up for crumbtrails, since it’s not part of the default theme.

    I provided a link to view this above. Are you seeing the issue? This seems to be theme-related.

    #493486

    Hey!

    I’m not sure why there is a duplicated “Events” trails. Please try to add this in the functions.php file:

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) {
    	
    	if ( is_singular('tribe_events') ) {
    		unset($trail[1]);		
    	}	
    	return $trail;
    }
    
    

    Best regards,
    Ismael

    #493596

    This worked, thanks! One other small issue, in the breadcrumb, the spacing is off between dividers.
    “Home / Events /Event name” –> currently reads with ” /”
    “Home / Events / Event name” –> should read with ” / ”

    Is there a way to move the location of the /?

    Thanks again!

    #494104

    Hey!

    try this code:

    span.sep {
    margin-right: 5px;
    }
    

    Regards,
    Andy

    #494226

    Great. Thanks!

    #494433

    Hey!

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Regards,
    Andy

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Events Calendar: Breadcrumb shows Events twice’ is closed to new replies.