Dear Hery Abudi,
Please go to "templates\sj_worldnews\includes\yt_template.class.php", finding:
if($browser->isMobile() && $browser->getBrowser()!= YTBrowser::PLATFORM_IPAD ){
$this->is_mobile = true;
if($this->get_cookie($this->template.'_switch_modes')!=''){
if($this->getParam('switch_modes')=='1'){
$this->is_mobile = true;
}else{
$this->is_mobile = false;
}
}
}else{
$this->is_mobile = false;
if($this->getParam('switch_modes')=='1'){
$this->is_mobile = true;
}
}
change to
$this->is_mobile = false;
if($this->getParam('switch_modes')=='1'){
$this->is_mobile = true;
}
Thanks