Need To Add Custom Filters

I’ll contact you directly :slightly_smiling_face:

1 Like

A post was split to a new topic: Event Calendar filter customization

A post was split to a new topic: Custom filters cusomization

Is it possible to do some similar magic for Google calendar event filter?

1 Like

Hi there, @DKCF :wave:

Since Google Calendar doesn’t have a Tag feature for events, the custom code will just create an empty filter without any options.

Thus, unfortunately, this solution won’t work for events imported from Google Calendar.

if your website has a different background color other than white you can add the code
select.style.backgroundColor = '#FFFFFF underneath this part of the code to change the background color of the selector

const select = document.createElement(‘select’);
select.id = “es-custom-filter”;
select.classList.add(‘eapp-events-calendar-controls-item’);
select.classList.add(‘eapp-events-calendar-filter’);
select.classList.add(‘eapp-events-calendar-filter-current’);
select.style.backgroundColor = '#FFFFFF (<-- your background color)

1 Like

Welcome to the Community, @L.a_Vk :wave:

Many thanks for your note - that’s highly appreciated!