Prestashop 1.7.1 - Top banner which hook shall be

2019-07-07 17:05发布

Following this question I have created a new banner. Now I want to insert a hook, but I am wondering which hook shall be used to display it on top of every page (as a promotional banner).

Thanks

1条回答
SAY GOODBYE
2楼-- · 2019-07-07 17:22

Assuming you're using the classic theme, you can use the displayBanner hook. If you look at header.tpl you can find the following block:

{block name='header_banner'}
   <div class="header-banner">
     {hook h='displayBanner'}
   </div>
{/block}

which should be displayed on top of every page

查看更多
登录 后发表回答