0

Magento Go My Webstore Home Page(CMS) に 3 列のレイアウトを含む Webstore を作成しています

レイアウト更新 XML は以下のとおりです。

<reference name="content">
    <block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml" after="cms_page">
         <action method="addPriceBlockType">
             <type>bundle</type>
             <block>bundle/catalog_product_price</block>   
             <template>bundle/catalog/product/price.phtml</template>
         </action>
    </block>
    <block type="reports/product_viewed" name="home.reports.product.viewed" alias="product_viewed" template="reports/home_product_viewed.phtml" after="product_new">   
        <action method="addPriceBlockType">
            <type>bundle</type>
            <block>bundle/catalog_product_price</block>                
            <template>bundle/catalog/product/price.phtml</template>
        </action>
    </block>
    <block type="reports/product_compared" name="home.reports.product.compared" template="reports/home_product_compared.phtml" after="product_viewed">
        <action method="addPriceBlockType">
            <type>bundle</type>
            <block>bundle/catalog_product_price</block>  
            <template>bundle/catalog/product/price.phtml</template>
        </action>
    </block>
</reference>
<reference name="right">
    <action method="unsetChild"><alias>right.reports.product.viewed</alias></action>
    <action method="unsetChild"><alias>right.reports.product.compared</alias></action>
</reference>

グリッドレイアウトを使用したホームページでの製品表示。しかし、リスト レイアウトで製品を表示する必要があります。製品レイアウトを変更する方法と、どのコード行を変更するか。
事前に助けてくれてありがとう

4

1 に答える 1