MEC month Drop down filter - Should say "Month" and "year" instead of "select"

hello ive notice the Calander dropdown for month filter has two dropdowns
Month & Year
The default Selected initially says “Select” this is not really user friendly for visitor using the site
can you please help me change the wording in month selection to say “Month” and the year to say “Year”

Thank you

Hello @bulli79,

Would you mind providing the URL for the page in question so that we’ll know which view of MEC you are using?

Thank you.

Thank you

Hello @bulli79,

There MEC date filter options would set the default values of dropdown to Select. However, there is a workaround for that.

Please add this code in X > Theme Options > JS:

(function($){

    $('select[id^="mec_sf_month"] .mec-none-item').text('Month');
    $('select[id^="mec_sf_year"] .mec-none-item').text('Year');

})(jQuery);

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

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