Hello. Thank you for contacting the Toolset support.
I would like to know that have you added any custom Javascript/jQuery code for that date picker field?
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
I have sent access details too, but i saw that it was publibly available..
Here is the jQuery: (if i remove it, the result is the same)
jQuery(document).ready(function(){
jQuery('input.hasDatepicker').datepicker('option','onClose',function(){
setTimeout(function(){
var timeanddate = jQuery('input.hasDatepicker').datepicker('getDate');
if(timeanddate!=''){
jQuery('input.hasDatepicker').parent().parent().addClass('activedate');
}
},1000);
//jQuery('#ui-datepicker-div').removeClass('openedDates');
});
jQuery('.js-wpt-date-clear ').click(function(){
jQuery('input.hasDatepicker').parent().parent().removeClass('activedate');
});
});
jQuery(document).ready(function(){
jQuery('.ui-datepicker-trigger').attr('src','/wp-content/uploads/2023/11/Icon-feather-calendar.svg');
});