Bigcommerce:%% SNIPPET_SideCategoryList %% - 底层模板文件在哪里?

时间:2014-04-09 03:25:09

标签: templates bigcommerce

在文件 template / Panels / SideCategoryList.html 中,有一行%%SNIPPET_SideCategoryList%%

当我修改文件时,我认为这一行是指( template / Snippets / SideCategoryList.html )我看到结果输出没有任何变化。

知道底层模板文件在哪里?

更新:根据this post,它可能是一个隐藏的代码段'哪个不能编辑。谁能证实这一点?如果是这样, template / Snippets / SideCategoryList.html 的目的是什么?

模板/面板/ SideCategoryList.html <div class="CategoryList" id="SideCategoryList"> <h3>Categories</h3> <div class="BlockContent"> <div class="%%GLOBAL_SideCategoryListTypeClass%%"> %%SNIPPET_SideCategoryList%% </div> </div> </div>

模板/片段/ SideCategoryList.html <li class="%%GLOBAL_LastChildClass%%"> <a href="%%GLOBAL_CategoryLink%%"> %%GLOBAL_CategoryName%%</a> %%GLOBAL_SubCategoryList%% </li>

从上面的模板代码中可以看出,在Panels和Snippets SideCategoryList.html 之间,没有<ul>。对 template / Snippets / SideCategoryList.html 进行更改没有任何区别。这似乎指向%%SNIPPET_SideCategoryList%%从其他地方提取代码。

1 个答案:

答案 0 :(得分:7)

根据ul上出现的超级鱼类判断,听起来您正在使用“弹出菜单”作为“类别菜单样式”(此选项可在设置和工具&gt;商店设置&gt;中找到)。显示器)。

使用“弹出”菜单时,被引用的代码段不是“Snippets / SideCategoryList.html”。相反,请尝试使用“Snippets / FlyoutTree.html”和“Snippets / FlyoutNode.html”模板。