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 PluginRepublicSupport/bc1a50d7ff0570f47c73f774ec10202c to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/bc1a50d7ff0570f47c73f774ec10202c to your computer and use it in GitHub Desktop.
Make phone field required
<?php
function prefix_required_quote_fields( $fields ) {
$fields['phone']['required'] = true;
return $fields;
}
add_filter( 'wcraq_quote_fields' , 'prefix_required_quote_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment