分面搜索不想在上钩时显示,Prestashop

问题描述

嗨,我有一个自定义模块,它有一个带有自定义钩子的弹出窗口。当我尝试挂钩例如搜索栏时,它会完美地显示它,但是当我尝试挂钩分面搜索时,它只会显示这样的评论

enter image description here

(我指的是图像)。我不知道发生了什么以及为什么,这是模板

<div id="pp_myModal" class="pp_modal">
      <div class="pp_modal-content">
        <span class="pp_close">&times;</span>
        <p>
{hook h="displayPopup"}
    </p>
      </div>
</div>

这里是hook的注册

public function hookdisplayPopup()
{
    return "";
}

我可能注册不正确,但我没有找到任何其他方式。我试过这个:

$hook = new Hook();
$hook->name = 'displayAtSpecificPlace';
$hook->title = 'The name of your hook';
$hook->description = 'This is a custom hook!';
$hook->position = 1;
$hook->add(); // return true on success

在安装方法中,但安装时间无限长。

感谢您的回答

代码在这里https://easyupload.io/ankyv8

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)