Quote:
Originally Posted by philrisk
How do we switch mobile off for ipad?
|
Quote:
Originally Posted by Freakmode
Code:
Modify modules/Xcart_Mobile/config.php file as follows:
- find this line of code
if ($detect->isMobile() && func_mobile_constant('AREA_TYPE') != 'A') {
- and change it to
if ($detect->isMobile() && !$detect->isTablet() && func_mobile_constant('AREA_TYPE') != 'A') {
|
Shouldn't this have been added as a Setting by now or at least as an FAQ in the manual?