Skip to content

Instantly share code, notes, and snippets.

@MaryOJob
Created February 9, 2020 20:01
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 MaryOJob/a043eac2104545e20c79e5ba477d6db9 to your computer and use it in GitHub Desktop.
Save MaryOJob/a043eac2104545e20c79e5ba477d6db9 to your computer and use it in GitHub Desktop.
Set the default country code to Nigeria for Caldera Forms
<?php // do not copy this line
add_filter( 'caldera_forms_phone_js_options', function( $options){
//Use ISO_3166-1_alpha-2 formatted country code
$options[ 'initialCountry' ] = 'NG';
return $options;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment