これで長い間立ち往生しています:(コアテンプレートファイルをオーバーライドしようとしています
app/design/frontend/base/default/template/persistent/checkout/onepage/billing.phtml
正常にアクティブ化したカスタム モジュールを使用し、新しいモジュールの構成ファイルは次の場所にあります。
アプリ/コード/ローカル/CustomCheckout/チェックアウト/etc/config.xml。
以下、内容です
<config>
<modules>
<CustomCheckout_Checkout>
<version>1.0.0</version>
</CustomCheckout_Checkout>
</modules>
<frontend>
<routers>
<checkout>
<args>
<modules>
<CustomCheckout_Checkout before="Mage_Checkout">CustomCheckout_Checkout</CustomCheckout_Checkout>
</modules>
</args>
</checkout>
</routers>
<layout>
<updates>
<checkout>
<file>persistent.xml</file>
</checkout>
</updates>
</layout>
</frontend>
</config>
上記のbilling.phtmlファイルを順番に呼び出すpersistent.xmlレイアウトをオーバーライドしようとしています。新しいレイアウトファイルを次の場所に配置しました
app/design/frontend/default/CustomCheckout/layout/persistent.xml.
以下、内容です
<layout version="0.1.0">
<checkout_onepage_index>
<reference name="checkout.onepage.billing">
<action method="setTemplate">
<template>checkout/onepage/billing.phtml</template>
</action>
</reference>
</checkout_onepage_index>
</layout>
変更したbilling.phtmlファイルを以下に配置しました
app/design/frontend/default/CustomCheckout/template/checkout/onepage/billing.phtml
しかし取り上げられていません。私は頭を悩ませています...どんな助けも大歓迎です。