Frontend / custommer login fails on chrome.
Magento 1.9.3.2 with Porto Theme.
Does any one have a solution for me?
I have done all the Google solutions but they have no effect at all.
Solved! Go to Solution.
The answer is that your theme does not supply a variable called form_key.
Just as stated above I have to add:
<input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey(); ?>" />
you add it right after <ul class="form-list">
to each one of my login.phtml files for the theme.
@Anonymous,
did you find any solution for this problem?
The answer is that your theme does not supply a variable called form_key.
Just as stated above I have to add:
<input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey(); ?>" />
you add it right after <ul class="form-list">
to each one of my login.phtml files for the theme.