Changing the format of the search widget's date picker
By default, GravityView formats dates in the US format of mm/dd/yyyy . If you would like to change that, you can.
Date format options are:
dmy- dd/mm/yyyydmy_dash- dd-mm-yyyydmy_dot- dd.mm.yyyymdy- mm/dd/yyyy (default)ymd_slash- yyyy/mm/ddymd_dash- yyyy-mm-ddymd_dot- yyyy.mm.dd
To modify the format, use the gravityview/widgets/search/datepicker/format filter below:
function modify_gravityview_search_datepicker_format( $format ) {
return 'mdy'; // <-- Change this to one of the date format options above
}
add_filter( 'gravityview/widgets/search/datepicker/format', 'modify_gravityview_search_datepicker_format' );
Read here how to add these code samples to your website: Where to put code samples.