如何在 prestashop 1.7 中添加 Mobile_Detect.php?
How to add Mobile_Detect.php in prestashop 1.7?
我需要在 prestashop 1.7 中添加 Mobile_Detect.php。我试图覆盖 FrontController.php
根据这个 post
https://www.prestashop.com/forums/topic/224983-need-help-including-class-to-detect-mobile-phones/
但没有 class 添加到 tpl 文件中。
您可以使用 prestashop 默认的设备检测功能:
获取设备:
Context::getContext()->getDevice();
检查手机:
Context::getContext()->isMobile();
检查平板电脑:
Context::getContext()->isTablet();
您可以找到 prestashop 默认值 class:
prestashop_root_path/classes/Context.php
我需要在 prestashop 1.7 中添加 Mobile_Detect.php。我试图覆盖 FrontController.php 根据这个 post https://www.prestashop.com/forums/topic/224983-need-help-including-class-to-detect-mobile-phones/
但没有 class 添加到 tpl 文件中。
您可以使用 prestashop 默认的设备检测功能:
获取设备:
Context::getContext()->getDevice();
检查手机:
Context::getContext()->isMobile();
检查平板电脑:
Context::getContext()->isTablet();
您可以找到 prestashop 默认值 class: prestashop_root_path/classes/Context.php