Is there any method or concept that when the customer register in fronted then login auto and redirect to the home page.
i wants to do the things by external (out of magento).
Is there any method or concept that when the customer register in fronted then login auto and redirect to the home page.
i wants to do the things by external (out of magento).
In Magento you can use one of below approach.
Option A:
System => Configuration => Customer ConfigurationCreate New Account Options tab and set "No" to 'Require Emails Confirmation' option.Login Options and set "No" for 'Redirect Customer to Account Dashboard after Logging in' option.\app\code\core\Mage\Customer\controllers\AccountController.phpyou can change it from this:
$session->setBeforeAuthUrl(Mage::helper('customer')->getAccountUrl());
To this:
$session->setBeforeAuthUrl(Mage::getBaseUrl());
Option B:
Create a custom module to work with "customer_login" event observer.
Option C:
Use the free community extension for logi redirect. You can get the idea from below one: