Created
March 23, 2018 23:25
-
-
Save Shelob9/0c9bc8e33cbc8ef11c224d6d16c38887 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Set a specific Caldera Forms field to NOT be required | |
| */ | |
| add_filter( 'caldera_forms_render_get_field', function( $field ){ | |
| //IMPORTANT: Change this to your field's ID | |
| if( 'fld1234' === $field[ 'ID' ] ){ | |
| $field[ 'required' ] = 0; | |
| } | |
| return $field; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment