PHP newb here - apologies if the answer to this is really simple.
I've tried to add a geotargetting code into my website but it appears the elseif part isn't working, no matter what I do.
Here's the code - any idea why if is fine, and else is fine, but elseif isn't?
<?php
if (function_exists('showCountryContentInPage')) {
if(showCountryContentInPage(array("us", "ca"),1)) {
// US
$region = 'USA';
$country = codediesel_get_users_country();
$store_url = 'URL here';
} elseif(showCountryContentInPage(array("at", "es", "cy", "fi", "ee", "fr", "de", "el", "ie", "it", "mt", "lu", "lv", "nl", "pt", "sk", "si", "be"),1)) {
// Europe
$region = 'Europe';
$country = codediesel_get_users_country();
$store_url = 'URL here';
} else {
// UK
$region = 'UK';
$country = codediesel_get_users_country();
$store_url = 'URL here';
}
?>