请告诉我如何使用插件在前端添加菜单项? 我在路径视图/前端/索引/main-navigation.tpl中添加了带有新菜单项的模板。但是菜单项仅出现在插件创建的页面上,而不出现在整个站点上。
答案 0 :(得分:0)
这是主菜单所在的位置:
├── frontend
│ └── index
│ └── shop-navigation.tpl
您可以覆盖其内容,也可以仅附加其内容。 文件内容应如下所示:
{extends file="parent:frontend/index/shop-navigation.tpl"}
{block name='frontend_index_checkout_actions'}
<li class="navigation--entry">
<a href="" class="btn starButton"> {* Add an URL to the href attribute to make your link work *}
<i class="icon--star"></i>
</a>
</li>
{$smarty.block.parent}
{/block}