Answers for "caldera forms phone number default country"

PHP
0

Change Initial Country For Caldera Forms Phone Fields

<?php
/**
* Set intiial country for Caldera Forms phone fields
*/
add_filter( 'caldera_forms_phone_js_options', function( $options){
	//Use ISO_3166-1_alpha-2 formatted country code
	$options[ 'initialCountry' ] = 'CH';
	return $options;
});
Posted by: Guest on June-29-2021

Code answers related to "caldera forms phone number default country"

Browse Popular Code Answers by Language