hello,
I have this site http://www.flor-export.it,
and I activated the display from smartphones and it work but if I try the site with chrome in ios or android I view the site in desktop version.
Why?
thx
case 'msie':
if (preg_match('/iemobile/i', $browser->getAgentString())) {
$result->set('mobile', true);
$result->set('browser', 'handheld');
} else {
if ($is_IE6) {
$result->set('browser', 'ie6');
$result->set('css3', false);
} else {
if (preg_match('/msie\s[7]/i', $browser->getAgentString()))
$result->set('browser', 'ie7');
else
if (preg_match('/msie\s[8]/i', $browser->getAgentString()))
$result->set('browser', 'ie8');
else
if (preg_match('/msie\s[9]/i', $browser->getAgentString()))
$result->set('browser', 'ie9');
$result->set('css3', true);
}
$result->set('mobile', false);
}
break;
case '':
foreach($userAgents as $item)
{
if(preg_match('/'.$item.'/i', $browser->getAgentString())){
$result->set('browser', 'ff');
$result->set('mobile', false);
$result->set('css3', true);
break;
} else {
$result->set('browser', 'handheld');
$result->set('mobile', true);
$result->set('css3', false);
}
}
break;
case 'msie':
if (preg_match('/iemobile/i', $browser->getAgentString())) {
$result->set('mobile', true);
$result->set('browser', 'handheld');
} else {
if ($is_IE6) {
$result->set('browser', 'ie6');
$result->set('css3', false);
} else {
if (preg_match('/msie\s[7]/i', $browser->getAgentString()))
$result->set('browser', 'ie7');
else
if (preg_match('/msie\s[8]/i', $browser->getAgentString()))
$result->set('browser', 'ie8');
else
if (preg_match('/msie\s[9]/i', $browser->getAgentString()))
$result->set('browser', 'ie9');
$result->set('css3', true);
}
$result->set('mobile', false);
}
break;
case 'chrome':
if(preg_match('/Android/i', $browser->getAgentString())) {
$result->set('browser', 'android');
$result->set('mobile', true);
} else if(preg_match('/Mobile Safari/i', $browser->getAgentString())) {
$result->set('browser', 'iphone');
$result->set('mobile', true);
} else if(preg_match('/iPad/i', $browser->getAgentString())) {
$result->set('browser', 'iphone');
$result->set('mobile', true);
} else {
$result->set('browser', 'chrome');
$result->set('mobile', false);
$result->set('css3', true);
}
case '':
foreach($userAgents as $item)
{
if(preg_match('/'.$item.'/i', $browser->getAgentString())){
$result->set('browser', 'ff');
$result->set('mobile', false);
$result->set('css3', true);
break;
} else {
$result->set('browser', 'handheld');
$result->set('mobile', true);
$result->set('css3', false);
}
}
break;