Home › Forums › Calendar Products › Events Calendar PRO › Remove Meta Labels
- This topic has 11 replies, 2 voices, and was last updated 10 years, 2 months ago by
Brian.
-
AuthorPosts
-
February 19, 2016 at 10:09 am #1078335
Laura
ParticipantHello! First off, thanks so much for such a great support forum; I’ve been able to find answers and tweak almost everything to work as we need it to. We’re using the calendar more as a database so most of our events are “past events”. I’ve worked around this by making them recurring events that never expire, which works just fine because it’s more important that users can always access the filter bar. Because the dates don’t matter as much for our functionality, I would like to do the following, but am getting stuck and hoping you can help:
+ The main page now shows all of our events as upcoming events (which is what we want) and I’ve removed the “Upcoming Events header bar completely. Is it possible to completely remove the bar that shows the date above the event in the list?
+ Remove the date from the event list snippet
+ Remove the “See all” link for all recurring events in main and single event views
+ Remove the date from the single event view for recurring events
Any direction you can provide on achieving this would be greatly appreciated (and please let me know if I should have created separate threads for these). Thank you!
February 22, 2016 at 8:11 am #1079783Brian
MemberHi,
Thanks for using our plugins. I can help out here.
Have you looked at your themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
That provides a good overview of how to move and modify templates in your theme.
There you could remove many of the pieces of content.
Do you have a link you can provide in a private reply to your event page?
I can provide some css to help remove some of the areas if you get stuck on the themer’s guide.
Let me know.
Thanks
February 22, 2016 at 8:25 am #1079797Laura
ParticipantThis reply is private.
February 22, 2016 at 9:14 am #1079957Brian
MemberHi,
So I found this css hides most if not everything of what you are trying to do:
.single-tribe_events .recurringinfo,
.single-tribe_events .tribe-events-schedule,
.tribe-events-loop .tribe-events-event-meta .tribe-event-schedule-details,
.tribe-events-loop .tribe-bar-filters .tribe-bar-date-filter {
display: none;
}Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.
And yes please create a new ticket for that filter issue.
Let me know how that works out.
If you want to completely remove the date try taking out this function for the single events:
<?php echo tribe_events_event_schedule_details( $event_id, ‘
‘, ‘
‘ ); ?>
plugins/the-events-calendar/src/views/single-event.php
and this one for the List View:
<!– Schedule & Recurrence Details –>
<div class=”tribe-event-schedule-details”>
<?php echo tribe_events_event_schedule_details() ?>
</div>plugins/the-events-calendar/src/views/list/single-event.php
Cheers
February 22, 2016 at 9:39 am #1080002Laura
ParticipantThis reply is private.
February 22, 2016 at 12:28 pm #1080128Brian
MemberOk try this css instead:
.single-tribe_events .recurringinfo,
.single-tribe_events .tribe-events-schedule,
.tribe-events-loop .tribe-events-event-meta .tribe-event-schedule-details,
.tribe-bar-filters .tribe-bar-date-filter {
display: none;
}February 22, 2016 at 12:52 pm #1080147Laura
ParticipantThis reply is private.
February 22, 2016 at 2:24 pm #1080205Brian
MemberMaybe we are talking about different things can you provide an image of what you are trying to remove.
February 22, 2016 at 2:35 pm #1080213Laura
ParticipantThis reply is private.
February 22, 2016 at 3:00 pm #1080235Brian
MemberOk this should get that area:
.single-tribe_events .recurringinfo,
.single-tribe_events .tribe-events-schedule,
.tribe-events-loop .tribe-events-event-meta .tribe-event-schedule-details,
.tribe-bar-filters .tribe-bar-date-filter,
.tribe-events-loop .tribe-events-list-separator-month {
display: none;
}February 22, 2016 at 3:04 pm #1080239Laura
ParticipantThis reply is private.
February 22, 2016 at 3:12 pm #1080244Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.
Thanks!
-
AuthorPosts
- The topic ‘Remove Meta Labels’ is closed to new replies.
