Remove Meta Labels

Home Forums Calendar Products Events Calendar PRO Remove Meta Labels

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1078335
    Laura
    Participant

    Hello! 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!

    #1079783
    Brian
    Member

    Hi,

    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

    #1079797
    Laura
    Participant

    This reply is private.

    #1079957
    Brian
    Member

    Hi,

    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

    #1080002
    Laura
    Participant

    This reply is private.

    #1080128
    Brian
    Member

    Ok 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;
    }

    #1080147
    Laura
    Participant

    This reply is private.

    #1080205
    Brian
    Member

    Maybe we are talking about different things can you provide an image of what you are trying to remove.

    #1080213
    Laura
    Participant

    This reply is private.

    #1080235
    Brian
    Member

    Ok 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;
    }

    #1080239
    Laura
    Participant

    This reply is private.

    #1080244
    Brian
    Member

    Great, 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!

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Remove Meta Labels’ is closed to new replies.