Hi, is there any news about this scheduled functionality?
By the way, I wrote a few lines of code to temporarily provide a solution.
It checks only the browser’s language settings, not the navigator or the GEO ip. In every case it works. I put it at the beginning of the header.php of my theme…
<?php
$langs=explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
if(!is_array($langs))$langs=array($langs);
foreach($langs as $l){
$reallang=(strlen($l)>2)?strtolower(substr($l,0,2)):strtolower($l);
if(!class_exists('WPGlobus'))break;
$currentlanguage=WPGlobus::Config()->language;
/*echo "Testing browser lang $reallang<br>Current language is $currentlanguage<br>";*/ //DEBUG
if($reallang==$currentlanguage)break;
foreach(WPGlobus::Config()->enabled_languages as $lang) {
if($lang==$reallang)header("Location: ".WPGlobus_Utils::localize_current_url($lang));
}
}
?>