• When we use the Phone number (better) field, it always displays “US +1” as default. As we are residing in Europe, it would be great to be able to adjust the order of countries, or at least define one specific default country. Thanks for considering this!

Viewing 1 replies (of 1 total)
  • Hey hi Alex, i hope you have found a solution now, if not, to display your country code by default, you have to add a few lines of code to your functions.php file. Please note it is not advisable to edit your theme files directly, it is recommended to always use a child theme.

    On your WP admin dashboard, go to appearance, themes editor, look for your functions.php and click on it, and add this code below to bottom, click on update and you are good to go.

    add_filter( ‘caldera_forms_phone_js_options’, function( $options){
    //Use ISO_3166-1_alpha-2 formatted country code
    $options[ ‘initialCountry’ ] = ‘NG’;
    return $options;
    });

    Please note that you have to look up your country’s ISO country code, click here for more info.

Viewing 1 replies (of 1 total)
  • The topic ‘Phone number (better) default country’ is closed to new replies.