Hi,
Do you want display this date format in the calculated field?
I’ll describe a situation, that you should adjust it to your particular equation.
If your current equation is something similar to: CDATE(…)
You should modify the equation like follow:
(function(){
var d = new Date( CDATE(…));
return d.toDateSting();
})()
Now, you should open the “module_public.js” file, located in “/wp-content/plugins/calculated-fields-form/js/modules/01_mathematical_logical/public/module_public.js”, in the text editor your choice, and modify the snippet of code:
‘validator’ : function( v )
{
return isFinite( v ) || /\d{2}[\/\-\.]\d{2}[\/\-\.]\d{4}/.test( v );
}
like follow:
‘validator’ : function( v )
{
return typeof v != ‘undefined’;
}
Best regards.