ba609 Posted December 9, 2018 Share Posted December 9, 2018 (edited) Hi, Is possible open the mobile version of the classic them on the tablet ? The tablet open only the desktop version, now. Prestashop 1.7.4 Thx 👋 Edited December 9, 2018 by ba609 (see edit history) Link to comment Share on other sites More sharing options...
phinq1910 Posted December 10, 2018 Share Posted December 10, 2018 Try override function on class Context public function getDevice() { static $device = null; if ($device === null) { if ($this->isTablet()) { //$device = Context::DEVICE_TABLET; $device = Context::DEVICE_MOBILE; } elseif ($this->isMobile()) { $device = Context::DEVICE_MOBILE; } else { $device = Context::DEVICE_COMPUTER; } } return $device; } Link to comment Share on other sites More sharing options...
ba609 Posted December 10, 2018 Author Share Posted December 10, 2018 (edited) Quote Try override function on class Context public function getDevice() { static $device = null; if ($device === null) { if ($this->isTablet()) { //$device = Context::DEVICE_TABLET; $device = Context::DEVICE_MOBILE; } elseif ($this->isMobile()) { $device = Context::DEVICE_MOBILE; } else { $device = Context::DEVICE_COMPUTER; } } return $device; } Hi phinq1910, file to edit, .....prestashop/classes/Context.php ThX Edited December 10, 2018 by ba609 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now