Enable Other Months Dates
By default, when viewing the datepicker, any visible dates in the previous or next months are disabled. This snippet will enable these dates.
Works well with GP Limit Dates!
Instructions
- Install our free Custom Javascript for Gravity Forms plugin. Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/
- Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin.
Code
Filename: gw-enable-other-months-date.js
/**
* Gravity Wiz // Gravity Forms // Enable Other Months Dates
* https://gravitywiz.com/
*
*
* Instruction Video: https://www.loom.com/share/4c37d9312cc74fd69195972d36c3d971
*
* By default, when viewing the datepicker, any visible dates in the previous or next months are disabled.
* This snippet will enable these dates.
*
* Works well with [GP Limit Dates](https://gravitywiz.com/documentation/gravity-forms-limit-dates/)!
*
* Instructions:
*
* 1. Install our free Custom Javascript for Gravity Forms plugin.
* Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/
* 2. Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin.
*/
gform.addFilter( 'gform_datepicker_options_pre_init', function( optionsObj, formId, fieldId ) {
optionsObj.selectOtherMonths = true;
return optionsObj;
} );