So, I'm using this to only display dates from today +2 days and it works well.
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {
$( "#input_1_8" ).datepicker({ minDate: '+2', gotoCurrent: true, prevText: '', showOn: 'both', buttonImage: '/wp-content/plugins/gravityforms/images/calendar.png', buttonImageOnly: true });
});
</script>
As I'm in the UK I want to show dates at 27/12/2012.
Without this extra piece all works fine, with it reverts to US - 12/27/2012
Any ideas how to get it back to 'proper' UK dates?
Cheers.