由于某种原因,我继承了一个完全运营的电子商务(magento),其中在添加产品时转换了追加销售和相关产品。所以在旧主题(现在使用)中,它们已经在前端代码中切换,而不是在后端设置中。
结果是,在我的新主题中,所有相关和追加销售都处于错误的位置。在此处查看新主题的结果:https://skarpe-1172.rask1.raskesider.no/18cm-kokkekniv-neo-kengata-masahiro.html
刀具应相关,珩磨杆(底部)等应位于顶部。
如何更改它们?的catalog.xml?如果是这样,怎么样?
追加销售
<block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
<action method="setColumnCount"><columns>4</columns></action>
<action method="setItemLimit"><type>upsell</type><limit>4</limit>
</action> </block>
相关
<reference name="right"> <block type="catalog/product_list_related"
name="catalog.product.related" before="-"
template="catalog/product/list/related.phtml"/> </reference>
答案 0 :(得分:0)
您是否尝试使用以下
替换代码相关
<block type="catalog/product_list_related"
name="catalog.product.related" before="-"
template="catalog/product/list/related.phtml"/>
&#13;
追加销售
<reference name="right">
<block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
<action method="setColumnCount"><columns>4</columns></action>
<action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
</block>
</reference>
&#13;
如果您有任何疑问,请告诉我