0

こんにちは、magento を使用してカスタム phtml ファイルまたはコードを登録ページに追加したいと考えています。登録用のコードを見つけましたが、どこで更新できるかわかりません。customer.xml からこのコードを取得しました

<customer_account_create translate="label">
        <label>Customer Account Registration Form</label>
        <!-- Mage_Customer -->
        <remove name="right"/>
        <remove name="left"/>

        <reference name="root">
            <action method="setTemplate"><template>page/1column.phtml</template></action>
        </reference>
        <reference name="content">
            <block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
                <block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before" translate="label">
                    <label>Form Fields Before</label>
                </block>
            </block>
        </reference>
</customer_account_create>

私のブロックコードは

 <module_index_index>
        <reference name="content">
            <block type="module/module" name="module" template="module/module.phtml" />
        </reference>
    </module_index_index>

Web サイトの登録ページの最後に自分のページを表示したいです。adanace に感謝します。

4

1 に答える 1

2

モジュールの layout.xml ファイルを作成することをお勧めします。

まず、モジュールの config.xml でこのファイルを定義する必要があります。

<frontend>
    <layout>
        <updates>
            <your_module>
                <file>your_module.xml</file>
            </your_module>
        </updates>
    </layout>
</frontend>

次に、このレイアウト ファイルを design/frontend/base/defualt/layout の下に作成します。

<?xml version="1.0" encoding="UTF-8"?>
<layout>
    <customer_account_create>
        <reference name="content">
            <block type="module/module" name="module" template="module/module.phtml" />
        </reference>
    </customer_account_create>
</layout>

これにより、登録ページの最後にモジュールが追加されます。

于 2013-02-12T07:55:06.800 に答える