Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
switch ($TMPL['acf_country']) {
case 'es':
$TMPL['acf_country_display'] = 'Spain';
break;
case 'de':
$TMPL['acf_country_display'] = 'Germany';
break;
case 'ca':
$TMPL['acf_country_display'] = 'Canada';
break;
}
SELECT field_choice_text FROM {$CONF['sql_prefix']}_join_fields WHERE field_choice_value = "{$TMPL['acf_country']}"
I believe you would need to reassign this in your plugin.
1 method is to use a switch
PHP:switch ($TMPL['acf_country']) { case 'es': $TMPL['acf_country_display'] = 'Spain'; break; case 'de': $TMPL['acf_country_display'] = 'Germany'; break; case 'ca': $TMPL['acf_country_display'] = 'Canada'; break; }
then you can call {$acf_country_display} as needed.