Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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;
});
Source by gist.githubusercontent.com #
 
PREVIOUS NEXT
Tagged: #Change #Initial #Country #For #Caldera #Forms #Phone #Fields
ADD COMMENT
Topic
Name
4+3 =