Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Set Countries To Appear At The Top Of The Caldera Forms Phone Field List

<?php
/**
* Set preffered countries for Caldera Forms phone fields
*/
add_filter( 'caldera_forms_phone_js_options', function( $options){
	//Use ISO_3166-1_alpha-2 formatted country code
	$options[ 'preferredCountries' ] = array( 'MX' );
	return $options;
});
Source by gist.githubusercontent.com #
 
PREVIOUS NEXT
Tagged: #Set #Countries #To #Appear #At #The #Top #Of #The #Caldera #Forms #Phone #Field #List
ADD COMMENT
Topic
Name
1+1 =