Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #339972

    I just updated to 3.0.2 and have selected /blog as the blog location

    After update my breadcrumbs have the root blog breadcrumb twice- like this:

    Home > Blog > Blog > Blog article

    also calendar has this behavior like this:

    Home > Events > Events > Name of an event

    Also alignment of page title and breadcrumb is off approx. 50px to left

    #342143

    Hi ttem!

    Thank you for using Enfold.

    Did you add any breadcrumb modifications before? Please reset the options on Settings > Reading panel to default.

    Cheers!
    Ismael

    #343085
    This reply has been marked as private.
    #344351

    Hi!

    Happy you fixed breadcrumbs.

    1. It looks fine for me, but what exactly do you want to achieve?

    2. Please add this to Quick CSS:

    .title_container .breadcrumb {
    left: 50px;
    }
    
    .title_container .main-title {
    left: 50px;
    }
    

    Best regards,
    Andy

    #344477
    This reply has been marked as private.
    #344816

    Resolved. Thanks.
    Found solution to missing title by adding the appropriate title mod from below function:

    // Runs the <title> element through our custom filter
    add_filter('tribe_events_title_tag', 'filter_events_title');
    // If you are using certain versions of Yoast you might try deleting the above line and uncommenting the following one
    // add_filter('wpseo_title', 'filter_events_title');
    
    // Tribe events: Manually set title for each page
    function filter_events_title ($title) {
    
    	if ( tribe_is_event() && is_single() ) { // Single Events
    		$title = 'Single event page';
    	}
    	elseif ( tribe_is_venue() ) { // Single Venues
    		$title = 'Venue page';
    	}
    	elseif (tribe_is_organizer() && is_single() ) { // Single Organizers
    		$title = 'Organizer page';
    	}
    	elseif ( tribe_is_month() && !is_tax() ) {  // Month View Page
    		$title = 'Month view page';
    	}
    	elseif ( tribe_is_month() && is_tax() ) { // Month View Category Page
    		$title = 'Month view category page';
    	}
    	elseif ( tribe_is_upcoming() && !is_tax() ) { // List View Page: Upcoming Events
    		$title = 'List view: Upcoming events page';
    	}
    	elseif ( tribe_is_upcoming() && is_tax() ) { // List View Category Page: Upcoming Events
    		$title = 'List view Category: Upcoming events page';
    	}
    	elseif ( tribe_is_past() && !is_tax() ) { // List View Page: Past Events
    		$title = 'List view: Past events page';
    	}
    	elseif ( tribe_is_past() && is_tax() ) { // List View Category Page: Past Events
    		$title = 'List view Category: Past events page';
    	}
    	elseif ( tribe_is_week() && !is_tax() ) { // Week View Page
    		$title = 'Week view page';
    	}
    	elseif ( tribe_is_week() && is_tax() ) { // Week View Category Page
    		$title = 'Week view category page';
    	}
    	elseif ( tribe_is_day() && !is_tax() ) { // Day View Page
    		$title = 'Day view page';
    	}
    	elseif ( tribe_is_day() && is_tax() ) { // Day View Category Page
    		$title = 'Day view category page';
    	}
    	elseif ( tribe_is_map() && !is_tax() ) { // Map View Page
    		$title = 'Map view page';
    	}
    	elseif ( tribe_is_map() && is_tax() ) { // Map View Category Page
    		$title = 'Map view category page';
    	}
    	elseif ( tribe_is_photo() && !is_tax() ) { // Photo View Page
    		$title = 'Photo view page';
    	}
    	elseif ( tribe_is_photo() && is_tax() ) { // Photo View Category Page
    		$title = 'Photo view category page';
    	}
    
    	return $title;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Updated to 3.0.2 Breadcrumb showing twice for blog and calendar’ is closed to new replies.