Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shamim2883/1d84ded14f54d2c51347825a7799a610 to your computer and use it in GitHub Desktop.
Save shamim2883/1d84ded14f54d2c51347825a7799a610 to your computer and use it in GitHub Desktop.
Remove minlength from message title
add_filter( 'fep_form_fields', 'fep_cus_fep_form_fields' );
function fep_cus_fep_form_fields( $fields )
{
unset( $fields['message_title']['minlength'] );
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment