Meta Box
Support › MB Builder › SuggestionResolved
When a field is of type date, add the html attribute: autocomplete = off. The autocomplete attribute always hinders the use of the date type field.
Hi,
Thank you for your suggestion.
I'm going to inform the development team to add this to the backlog development. For now, you can use this simple jQuery code to add the HTML attribute to the date field.
jQuery(document).ready(function($) { $('input#field_id').attr('autocomplete', 'off'); });
Hi Nuno,
Thanks for your feedback. The autocomplete is added here and will be included in the next version.