在prestashop 1.7中,我如何显示/隐藏自定义内容(图像,html块等),特别是对于移动设备?这是否在tpl文件中使用smarty(或php)?
答案 0 :(得分:1)
您可以使用MobileDetect
库:
public function hookDisplayHeader()
{
if (Context::getContext()->getMobileDevice()) {
//content for mobile devices
} else {
//content for not mobile devices
}
}