magento注册时,默认是只要填写简单的资料,即可,地址资料在支付或后期进行补充的,
但如果想在在magento注册时开启地址资料卦写功能,要如何操作呢,
其实在模板中是判断
$this->getShowAddressFields() 是否为真
两种办法:
1、xml设置
<customer_account_create>
<reference name="customer_form_register">
<action method="setShowAddressFields"><value>true</value></action>
</reference>
</customer_account_create>
在customer.xml或local.xml中增加上述资料即可
2、代码设置
在提供注册的模板中,植入
<?php $this->setShowAddressFields(true); ?>
即可实现。
(责任编辑:最模板) |