我想复制view.phtml块,该块由本页左侧的高级搜索过滤器组成: http://47stphoto.simple-helix.net/brands/view/?brand=3
位于此页面上的学习中心区块之上: http://47stphoto.simple-helix.net/catalogsearch/result/?q=Search+everyday+deals
我已尝试将catalog.phtml代码复制到catalog.xml文件中并将其放在学习中心.phtml上方并出现php错误
答案 0 :(得分:1)
如果要在catalogsearch_result_index
页面中显示,请转到此标记中的catalogue.xml并创建以下行:
<reference name="search.layer.view">
<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
然后在page.xml中的default标记内创建新引用:
<block type="core/text_list" name="search.layer.view" as="search.layer.view" translate="label">
</block>
然后在您的学习中心phtml中调用它,如下所示:
<?php echo $this->getChildHtml('search.layer.view') ?>
我认为这会对你有所帮助: - ]