Ok, as You have requested, I have completely disabled mobile functionalities of menu in this template.
I have edited the file:
/tempaltes/rova_normal2012/libs/gk.template.helper.php around line 364, and replaced:
- Code: Select all
function mobile_device_detect () {
require_once ('mobile_device_detect.php');
//bypass special browser:
$special = array('jigs', 'w3c ', 'w3c-', 'w3c_');
if (in_array(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4)), $special)) return false;
return mobile_device_detect('iphone','android','opera','blackberry','palm','windows');
}
with:
- Code: Select all
function mobile_device_detect () {
require_once ('mobile_device_detect.php');
//bypass special browser:
$special = array('jigs', 'w3c ', 'w3c-', 'w3c_');
if (in_array(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4)), $special)) return false;
//return mobile_device_detect('iphone','android','opera','blackberry','palm','windows');
return false;
}