Hi all, I had trouble with TELINE III and PURITY II, defaulting to Mobile browser on some site visitors using IE8, but never with FF.
I did not want any browsers or devices (iphone/android) to see the mobile version which has the links menu types. After trying many ways to accomplish, I found the best way was to modify the libs/mobile_device_detect.php file. In that file is a large CASE statement. If you change the $mobile_browser and $status return settings for ALL of the case statement sections as below, then your site will always show the desktop version and never show the mobile version for anyone who visits, regardless of the browser or device. This kind of defeats the purpose of the autodetection, but in some cases, as was for me, this may be desired behavior. Also FYI, I am running the IE8 compatiability extension on my site, but that did not seem to make much difference for me. Best of luck.
$mobile_browser = false; // set mobile browser to false
$status = ‘Desktop / full capability browser’;