我如何在 Magento 中添加更多字段 ->系统->我的账户

发布于 2024-09-11 08:53:11 字数 93 浏览 7 评论 0原文

我是 magento 的新手,并尝试在那里添加更多字段。我正在使用 magento 1.4.1.0 并尝试所谓的块和控制器覆盖方法。但我看不到这些变化。有人可以帮忙吗???

I am new to magento and trying to add some more fields there. i am using magento 1.4.1.0 and also trying to so called override methods for block and controller. but i am not able to see the changes. Can anyone help ???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏尔 2024-09-18 08:53:11

地址字段已实现,但在默认主题中未激活。查看 app/design/frontend/base/default/template/customer/form/register.phtml (1.4) 或 app/design/frontend/default/default/template/customer /form/register.phtml (1.3)。

您可以通过将此行放在顶部来启用地址字段:

<?php $this->setShowAddressFields(true)); ?>

Address fields are already implemented but not activated in the default theme. Have a look at app/design/frontend/base/default/template/customer/form/register.phtml (1.4) or app/design/frontend/default/default/template/customer/form/register.phtml (1.3).

You can enable the address fields by putting this line at the top:

<?php $this->setShowAddressFields(true)); ?>
转瞬即逝 2024-09-18 08:53:11

您必须在数据库中添加字段,制作迁移脚本并将您想要的想法添加到属性中

You have to add the fields in the database, make a migration script and add the thinks you want to the attributes

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文