Magento の CM ページにログイン フォームを追加したいので、これを追加しようとしました。
{{block type=”core/template” template=”customer/form/login.phtml”}}
content
CMSページのセクションにありますが、機能していません。私を助けてください。
Magento の CM ページにログイン フォームを追加したいので、これを追加しようとしました。
{{block type=”core/template” template=”customer/form/login.phtml”}}
content
CMSページのセクションにありますが、機能していません。私を助けてください。
このコードは最終的に私のために語られました。
{{block type ="Mage_Customer_Block_Form_login" template="customer/form/login.phtml" }}
テーマで cms.xml を開き、次を見つけます。
<reference name="content">
<block type=”cms/page” name=”cms_page”/>
</reference>
これに置き換えます
<reference name="content">
<block type="customer/form_login" name="customer_form_login" template="customer/form/login.phtml"/>
<block type=”cms/page” name="cms_page"/>
</reference>
その後、コードが機能するはずです。
これを試して:
{{block type="customer/form_login" name="customer_form_login_block" template="persistent/customer/form/login.phtml"}}
Magento のバージョンが 1.6 未満の場合は、以下のコードを使用してください。
{{block type="customer/login" template="customer/form/login.phtml"}}
Magento のバージョンが 1.6 以降の場合
{{block type="customer/login" template="persistent/customer/form/login.phtml"}}