Prestashop 1.7隐藏移动设备上的内容

时间:2018-02-13 09:46:43

标签: php mobile conditional smarty prestashop-1.7

在prestashop 1.7中,我如何显示/隐藏自定义内容(图像,html块等),特别是对于移动设备?这是否在tpl文件中使用smarty(或php)?

1 个答案:

答案 0 :(得分:1)

您可以使用MobileDetect库:

public function hookDisplayHeader() 
{
    if (Context::getContext()->getMobileDevice()) {
        //content for mobile devices
    } else {
        //content for not mobile devices
    }
}