phpcuong / magento2-redirect-customer
Redirect Customer to the particular page after Logging in successfully
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 1
Forks: 7
Open Issues: 2
Type:magento2-module
Requires
- php: 5.6.*|7.0.*|7.1.*|7.2.*
- magento/framework: 100.0.*|100.1.*|101.0.*|102.0.*
- magento/module-backend: 100.0.*|100.1.*|100.2.*|101.0.*
This package is auto-updated.
Last update: 2025-04-14 06:10:36 UTC
README
By default, Magento 2 provides us with a feature, that allows redirecting the customer to account dashboard after logging in, you can enable this feature by going to Stores → Settings → Configuration → Customers → Customer Configuration → Login Options
Set the field named "Redirect Customer to Account Dashboard after Logging in" to Yes
This feature is working perfectly, however, Magento 2 doesn't support to redirect the customer to a particular page after logging in, if your project requires to use this feature, today I show you the best codes to complete your task.
So what will we do in this practice?
- We will create a new module called PHPCuong_CustomerRedirecting
- We will create an additional field saves the custom page in the configuration
- We will use the event named customer_login to redirect the customer to that custom page after logging in successfully
Before doing this practice, you need to understand, How to use events and observers in Magento 2, if you don't watch the video about this lesson yet, you can watch it here http://bit.ly/2QwDfpL
Step 1: Declaring the new module called PHPCuong_CustomerRedirecting
- Create the namespace PHPCuong in the path app\code
- Create the module named CustomerRedirecting in the path app\code\PHPCuong
- Create the file named registration.php in the path app\code\PHPCuong\CustomerRedirecting
- Create the file named module.xml in the path app\code\PHPCuong\CustomerRedirecting\etc
Step 2: Create an additional field saves the custom page in the configuration
- Create the new file named system.xml in the path app\code\PHPCuong\CustomerRedirecting\etc\adminhtml
Step 3: Subscribing to the event named customer_login
- Create the new file named events.xml in the path app\code\PHPCuong\CustomerRedirecting\etc\frontend
- Create the new file named CustomerLogin.php in the path app\code\PHPCuong\CustomerRedirecting\Observer
Step 4: Test and see the results
-
Run the following command lines: php bin/magento setup:upgrade --keep-generated
-
Test the results Go to the Magento Admin Panel → Stores → Settings → Configuration → Customers → Customer Configuration → Login Options Set the custom page.