Файл:
/classes/controller/FrontController.php
До:
Код:
$this->context->smarty->assign(array(
'mobile_device' => $this->context->getMobileDevice(),
добавить:
Код:
if (!isset($this->context->cookie->mob))
{
require_once(_PS_TOOL_DIR_.'mobile_Detect/Mobile_Detect.php');
$mobile_detect = new Mobile_Detect();
if ($mobile_detect->isMobile() || $mobile_detect->isTablet())
$this->context->cookie->mob = 1;
else
$this->context->cookie->mob = 0;
}
Код:
'mobile_device' => $this->context->getMobileDevice(),
заменить на:
Код:
'mobile_device' => $this->context->cookie->mob,
В шаблоне использовать подобный код:
Код:
{if $mobile_device}
...
{/if}