warleyelias/customer-login

The Customer Login module provides the ability lock a customer account in magento 2

Installs: 159

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Type:magento2-module

pkg:composer/warleyelias/customer-login

1.1.1 2025-08-12 14:11 UTC

This package is auto-updated.

Last update: 2025-12-12 14:46:55 UTC


README

  • When you work on a project, the client requires you to block a customer account from the backend, the client means preventing them from using their account. Then the customer can't be able to log in to their account. By default, Magento hasn't this functionality. You don't know how to complete this task, you are searching for a good solution. Today I show you the best codes to complete your task.

  • We have the scenario: We will create a new customer attribute called "Blocked", it will have two options (Yes/No). If this attribute is set to "Yes" when a customer tries to log in, they will get an inform similar to this "Your account is blocked for the security reason, please contact us for details."

Screenshot

ScreenShot ScreenShot

See the video How to lock a customer account in magento 2 here.

https://www.youtube.com/watch?v=tBGagDLXUAQ&list=PL98CDCbI3TNvPczWSOnpaMoyxVISLVzYQ

How to add a new dynamic row system configuration in the Magento 2 admin.

https://www.youtube.com/watch?v=GZ-I9SdGLT0&list=PL98CDCbI3TNvPczWSOnpaMoyxVISLVzYQ

After instalation execute the query to change the source model to your attribute

UPDATE `eav_attribute` SET `source_model` = 'PHPCuong\\CustomerLogin\\Model\\Customer\\Attribute\\Source\\Reason' WHERE `eav_attribute`.`attribute_code` = 'reason'; This is to not impact when you generate an image that is direct connect to your production BD, so after deploy you need to change the source_model for attribute reason