Hi wfrancis
You could replace above code block
if ($this->mobile_device_detect_layout()) {
$mobile = $this->getLayout ();
if (is_file(dirname(__FILE__).DS.'menu'.DS."$mobile.class.php")) $menutype = $mobile;
else $menutype = 'handheld';
return $menutype;
}
in getMenuType function of templates/ja_kyanite_ii/libs/ja.template.helper.php by
$mobile = $this->mobile_device_detect_layout();
$iphone = $this->_tpl->params->get ( 'iphone_layout', $mobile );
$handheld = $this->_tpl->params->get ( 'other_handheld_layout', 'handheld' );
if (($mobile == 'iphone' && $iphone != 'default' && $iphone != -1)
|| ($mobile && $handheld != 'default' && $handheld != -1)
) {
$mobile = $this->getLayout ();
if (is_file(dirname(__FILE__).DS.'menu'.DS."$mobile.class.php")) $menutype = $mobile;
else $menutype = 'handheld';
return $menutype;
}