Tagged: breadcrumb
-
AuthorPosts
-
October 23, 2014 at 9:34 am #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
October 28, 2014 at 11:25 am #342143Hi ttem!
Thank you for using Enfold.
Did you add any breadcrumb modifications before? Please reset the options on Settings > Reading panel to default.
Cheers!
IsmaelOctober 29, 2014 at 11:46 pm #343085This reply has been marked as private.October 31, 2014 at 11:27 pm #344351Hi!
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,
AndyNovember 1, 2014 at 5:42 am #344477This reply has been marked as private.November 2, 2014 at 8:29 am #344816Resolved. 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; }
-
AuthorPosts
- The topic ‘Updated to 3.0.2 Breadcrumb showing twice for blog and calendar’ is closed to new replies.