Modern Events Calendar - Change Title of Category Dropdown

Hey there,

I’m using the MEC list view and am setting it up to filter by month by setting each month as a category. Is it possible to change the title of the Category dropdown? So rather than “Category” it would say “Filter by Month”? Looked through all of the settings and couldn’t find anything. Any help would be appreciated!

Hi Brandy,

Thank you for reaching out to us. To change the category filter dropdown text try adding the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	$('.search_cat option:first-child').html('Filter by Month');
});

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.