LiveZilla 和 Prestashop - 未在所有页面上显示
LiveZilla and Prestashop - not displaying on all pages
我的网站上有 LiveZilla,但它连接到错误的挂钩上。聊天栏仅在我单击菜单(水平栏)时出现,它不会出现在主屏幕/添加到购物车页面或除菜单栏上的链接之外的任何其他页面。
它只允许我将它连接到 'displayleftcollumn or displayrightcollumn' - 当我 运行 实时编辑时我可以看到该模块,但它只在菜单页面上。
我希望聊天栏出现在每个页面上 - 我使用的是默认 bootstrap 主题
我该如何解决这个问题?
站点www.shop.tacitskills.com - 点击课堂/在线等,栏出现。
我试过询问 LiveZilla / Prestashop 但没有回应。
您可以编辑模块 php,并包含此模块以添加页脚选项:
public function hookFooter($params)
{
return $this->hookLeftColumn($params);
}
更好的是,在文件夹 overrides/modules/(modulename)/(modulename).php 和
中创建覆盖文件
<?php
if (!defined('_PS_VERSION_'))
exit;
class (Modulename)Override extends (Modulename)
{
public function hookFooter($params)
{
return $this->hookLeftColumn($params);
}
}
在 (modulename) 中使用 livezilla 模块文件夹名称。
这样,它将 "survive" 模块更新。
不要忘记在创建此文件后删除文件 cache/class_index.php。
我的网站上有 LiveZilla,但它连接到错误的挂钩上。聊天栏仅在我单击菜单(水平栏)时出现,它不会出现在主屏幕/添加到购物车页面或除菜单栏上的链接之外的任何其他页面。
它只允许我将它连接到 'displayleftcollumn or displayrightcollumn' - 当我 运行 实时编辑时我可以看到该模块,但它只在菜单页面上。
我希望聊天栏出现在每个页面上 - 我使用的是默认 bootstrap 主题
我该如何解决这个问题?
站点www.shop.tacitskills.com - 点击课堂/在线等,栏出现。
我试过询问 LiveZilla / Prestashop 但没有回应。
您可以编辑模块 php,并包含此模块以添加页脚选项:
public function hookFooter($params)
{
return $this->hookLeftColumn($params);
}
更好的是,在文件夹 overrides/modules/(modulename)/(modulename).php 和
中创建覆盖文件<?php
if (!defined('_PS_VERSION_'))
exit;
class (Modulename)Override extends (Modulename)
{
public function hookFooter($params)
{
return $this->hookLeftColumn($params);
}
}
在 (modulename) 中使用 livezilla 模块文件夹名称。 这样,它将 "survive" 模块更新。 不要忘记在创建此文件后删除文件 cache/class_index.php。