Can't find how to disable mobile view in new version of temlate.
I tried to set false value for every setMobile and isMobile function in /includes/lib/browser.php but it doesn't help!
p.s.
Found that template doesn't work at opera browser on Windows XP.
It displays an error "can't find temlate-opera.css"
I changed
// Include css with Opera
if(preg_match("/opera/i", $_SERVER['HTTP_USER_AGENT'])){
$yt->ytStyleSheet('css/template-opera.css');
}
to
// Include css with Opera
if(preg_match("/opera/i", $_SERVER['HTTP_USER_AGENT'])){
$yt->ytStyleSheet('css/template-blue.css');
}
now it works. Is it correct?