如何在prestashop 1.7中添加Mobile_Detect.php?

Pan*_*ogi 3 prestashop prestashop-1.7

我需要在prestashop 1.7中添加Mobile_Detect.php.我试图根据这篇文章覆盖FrontController.php https://www.prestashop.com/forums/topic/224983-need-help-including-class-to-detect-mobile-phones/

但没有在tpl文件中添加类.

小智 6

您可以使用prestashop默认设备检测功能:

得到设备:

Context::getContext()->getDevice();
Run Code Online (Sandbox Code Playgroud)

检查手机:

Context::getContext()->isMobile();
Run Code Online (Sandbox Code Playgroud)

检查平板电脑

Context::getContext()->isTablet();
Run Code Online (Sandbox Code Playgroud)

您可以找到prestashop默认类:prestashop_root_path/classes/Context.php