Remove Event Dates

Add the ability to remove dates from the event calendar so we can use the widget for events that do not have specific dates.

Hi there @user12173 :wave:

We’ll try to consider implementation of this setting in the future updates.

As a workaround, feel free to use this CSS code (should be added to the Custom CSS field on the Style tab of your widget’s settings):

.eapp-events-calendar-date-element-component {
  display: none;
}

This code will remove dates in popups:

.global-styles,
.eapp-events-calendar-popup-item-inner .eapp-events-calendar-tags-item,
.eapp-events-calendar-popup-item-inner .eapp-events-calendar-popup-item-time {
  display: none;
}