Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created March 23, 2018 23:25
Show Gist options
  • Select an option

  • Save Shelob9/0c9bc8e33cbc8ef11c224d6d16c38887 to your computer and use it in GitHub Desktop.

Select an option

Save Shelob9/0c9bc8e33cbc8ef11c224d6d16c38887 to your computer and use it in GitHub Desktop.
<?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