Good afternoon,
I managed to allow the date fields to accept the format day month and year (22 February 2013) by implementing this script :
<script>
jQuery.noConflict();
jQuery(document).ready(function($) {
$( "#input_3_10" ).datepicker({ minDate: '+2', gotoCurrent: true, prevText: '', showOn: 'both', buttonImage: '/wp-content/plugins/gravityforms/images/calendar.png', buttonImageOnly: true, dateFormat:'d MM y' });
});
</script>
However although this works when it comes to submiting the form the date is always rejected as the format d MM y is not in the drop down list in the form options. Does anyone know how to solve this?