I’ll contact you directly
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?
Hi there, @DKCF
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)
Welcome to the Community, @L.a_Vk
Many thanks for your note - that’s highly appreciated!