私はMagentoCE1.6.2に取り組んでおり、タブのすぐ下に「他の顧客も購入しました」と表示する拡張機能をインストールしています。
次に、[最近表示した商品]を[商品]ページの一番下、フッターの直前に配置します。
だから私はこのようなものが欲しい
Tabs
'other customers also bought'
'Recently Viewed products'
Footer Starts here...
しかし、どういうわけか、私の「他の顧客も購入した」は「最近見た製品」でラップを乗り越えています
レイアウトファイルを変更しようとしましたが、成功しませんでした
他の顧客のレイアウトファイルもotherbought.xmlを購入しました
<catalog_product_view>
<reference name="content">
<block type="relatedproducts/relatedproducts" name="catalog.product.awrelated.community" as="othersbought_products" after="info_tabs" template="catalog/product/list/awrelated.phtml">
<action method="setTarget">
<alias>community</alias>
</action>
</block>
</reference>
</catalog_product_view>
最近表示された製品のレイアウトreports.xml
<catalog_product_view translate="label">
<reference name="content">
<block type="reports/product_viewed" name="right.reports.product.viewed" as="recently_viewed" template="reports/product_viewed.phtml" />
</reference>
</catalog_product_view>
そして、タブにはEasyTabs拡張機能easytabs.xmlを使用しています
<reference name="product.info.additional">
<action method="unsetChild" ifconfig="easy_tabs/general/tagstabbed"><name>product_tag_list</name></action>
<block type="catalog/product_view_tabs" name="product.info.tabs" as="info_tabs">
<action method="setTemplate" ifconfig="easy_tabs/general/enabled"><template>easytabs/tabs.phtml</template></action>
<action method="addTab" translate="title" module="catalog" ifconfig="easy_tabs/general/descriptiontabbed"><alias>description_tabbed</alias><title>Description</title><block>catalog/product_view_description</block><template>easytabs/description.phtml</template></action>
</block>
</reference>
before
またはafter
要素を使用できると思いますが、機能しません。または、フッターの直前の商品ページの下部に「最近表示した商品」を直接表示する方法はありますか?
ありがとう