在 Magento 中禁用客户

发布于 2024-09-17 04:51:55 字数 97 浏览 3 评论 0原文

我想向管理员提供禁用登录帐户的选项,不会从帐户中删除任何数据,但如果为不再使用它的用户禁用,一旦清除,用户将不会注意到任何新闻通讯或其他任何内容,只是最后一封邮件通知停用您的帐户。

I want to include to the administrator the option to disable login accounts, no data would be erased from the account, but if would be disabled for users not using it more, once cleared, the user would not notice any newsletters or anything else, just one last mail notifying the deactivating your account.

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

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

发布评论

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

评论(2

快乐很简单 2024-09-24 04:51:57

这是一件有趣的事。我之前研究过这个问题,客户数据库记录上有一个 is_active 标志,但核心 Magento 代码不会在任何地方访问或写入它。为了满足此要求,您需要覆盖 Mage_Customer_AccountController 检查 loginPostAction() 内此字段的值,然后使该字段在 adminhtml Customer 块中可见。

我对实现该代码有点紧张,因为 Varien 会包含该字段但根本不使用它,这让我感到困扰。我对其他人对此的想法很感兴趣。

哈特哈,
京东

This is an interesting one. I've looked into this previously, and there is an is_active flag on the customer database record, but it is not accessed or written anywhere by the core Magento code. In order to achieve this requirement, you'll need to override the Mage_Customer_AccountController to check the value of this field inside loginPostAction() and then to make that field visible within the adminhtml Customer blocks.

I'm a little nervous about implementing that code as it bothers me that Varien would include the field but not utilise it at all. I'd be interested in others' thoughts about this.

HTH,
JD

本宫微胖 2024-09-24 04:51:57

或者,您可以使用 Magento Connect 的这个免费扩展。

magentocommerce(死链接)客户激活扩展

编辑:< a href="https://github.com/Vinai/customer-activation" rel="nofollow noreferrer">Github 项目

Or, you could use this free extension from Magento Connect.

magentocommerce (deadlink) Customer Activation Extension

edit: Github project

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