Is it possible to set a default date for the jquery date picker field? I will be using the custom field together with the Woocommerce order module.
What I want to achieve is to set the default value of the ‘fitting date’ field to be the order date + 7days. So if the order was made on 1 Jan 2016, the default value of the “fitting date” field should be 8 Jan 2016.
There are a couple of ways that this can be done. The easiest would probably be by using either an acf/load_field filter (https://www.advancedcustomfields.com/resources/acfload_field/), an acf/prepare_field filter (https://www.advancedcustomfields.com/resources/acfprepare_field/) or an acf/load_value filter (https://www.advancedcustomfields.com/resources/acfload_value/). Any one of these can be used to alter the default value of the field when the page is loaded and or the field is shown. acf/load_field and acf/prepare_field will let you alter any field settings.