Hi,
I’m having a go at setting up a multi-language site and am following this article: Multi language site alternative
I’ve added some global variables to path.php as describe in the article, e.g:
$global_vars = array(
"country_code" => "de",
"language" => "german"
); // This array must be associativebut if I then place a {country_code} tag in my template it doesn’t output ‘de’, it just outputs ‘{country_code}’ on the page.
Am I missing something?
Thanks,
Andy