Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/c8a02916170e264a81ec02f021433d0f to your computer and use it in GitHub Desktop.
Save spivurno/c8a02916170e264a81ec02f021433d0f to your computer and use it in GitHub Desktop.
<?php
/**
* Gravity Perks // Limit Dates // Disable All Dates & Set Enabled Dates via Exceptions
* http://gravitywiz.com/documentation/gravity-forms-limit-dates/
*/
add_filter( 'gpld_limit_dates_options_123_1', function( $options, $form, $field ) {
$options['exceptionMode'] = 'enable';
$options['disableAll'] = true;
return $options;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment