home.xmlファイルにtwo_column_rightテンプレートを使用してホームページに項目の表示用の4列グリッドを表示しようとしました。残念ながら、私は他のカタログページで指定した3列のグリッドを使用しています:/ホームページのMagento製品の表示グリッド列
おそらく<update handle="four_column_grid" />
をホームページを参照するタグの下に挿入する必要がありますか?
<?xml version="1.0" encoding="UTF-8"?>
<layout version="0.1.0">
<four_column_grid>
<reference name="product_list">
<action method="setColumnCount">
<count>4</count>
</action>
</reference>
</four_column_grid>
<three_column_grid>
<reference name="product_list">
<action method="setColumnCount">
<count>3</count>
</action>
</reference>
</three_column_grid>
<default>
<!-- Header -->
<reference name="header">
<action method="unsetChild"><name>welcome</name></action>
</reference>
<!-- Root -->
<reference name="root">
<action method="unsetChild"><name>breadcrumbs</name></action>
</reference>
<reference name="footer">
<!-- Remove all the other Magento links - "Site Map, Search Terms, Advanced Search, and Contact Us" -->
<!-- <action method="unsetChild"><name>footer_links</name></action> -->
</reference>
<!-- Right sidebar -->
<reference name="right">
<remove name="paypal.partner.right.logo"/>
</reference>
</default>
<catalog_category_default>
<update handle="three_column_grid" />
</catalog_category_default>
<catalog_category_layered>
<update handle="three_column_grid" />
</catalog_category_layered>
</layout>
リストブロックをホームページに追加していますか? – Vinai
CMSでは、コンテンツに{{block type = "catalog/product_list" category_id = "51" template = "catalog/product/list.phtml"}}を挿入しました。私は1.3から1.4にアップグレードし、1.4テーマフレームワークに合うようにすべてのテンプレートを作り直しました:/この呼び出しは1.3のレガシーコードです – hotdiggity