编辑“;创建帐户";Magento商店的登记表


Edit "Create Account" registration form for Magento Store

当客户在我的商店创建新帐户时,我想编辑所需的字段。目前,该表格要求客户输入他的名字、姓氏、电子邮件和密码。我想禁用"名字"answers"姓氏",甚至可能不显示这些字段。我只是对电子邮件感兴趣,也许还有用户名,当然还有密码。

我目前正在使用Magento版本1.7

有一个扩展(快速注册),允许禁用"名字"、"姓氏"answers"电子邮件"字段。

在数据库中更改所需状态后,需要覆盖AccountController.phpapp/code/core/Mage/Customer/controllers/AccountController.php)。在createPostAction()中,您需要注释以下行:

$customerErrors = $customer->validate();
if (is_array($customerErrors)) {
    $errors = array_merge($customerErrors, $errors);
}