正しいアプローチを提案してください。ユーザーがボタンをクリックしたときに「友人にメール」ページをポップアップウィンドウにカスタマイズしたい(この製品をメールで送信)。テンプレートヒントを有効にすると、ボタンが次のようにレンダリングされることがわかりました。
frontend / rwd / default / template / catalog / product / view / sharing.phtml
対応するレイアウトファイルはcatalog.xml
(frontend / rwd / default / layoutにあります)
だから私は、次のコードlocal.xml
でcatalog.xml
存在する同じフォルダにを作成しました(単に「デバッグ」するtest.phtml
代わりにsharing.phtml
、
<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<catalog-product-view>
<reference name="content">
<block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
<block type="catalog/product_view" name="product.info.sharing" as="sharing" template="catalog/product/view/test.phtml"/>
</block>
</reference>
</catalog-product-view>
</default>
</layout>
しかし、何も起こりません。既存のファイルxml
やphtml
ファイルを変更せずに、テーマのデフォルトのデザインを変更(上書き)する方法を意味しますか?