Hi,
I probably found out from where the problem was coming, you'll just have to :
- Edit the "\components\com_hikashop\views\user\view.html.php" file
- Change these lines :
var usernameValue = "", passwdValue = "", d = document, el = null;
el = d.getElementById("username");
if(!el) el = d.getElementById(\'modlgn-username\');
if(el) usernameValue = el.value;
el = d.getElementById("passwd");
if(!el) el = d.getElementById("modlgn-passwd");
if(el) passwdValue = el.value;
- By :
var usernameValue = "", passwdValue = "", d = document, el = null;
el = d.getElementById("username");
if(el) usernameValue = el.value;
el = d.getElementById("passwd");
if(el) passwdValue = el.value;
Note that this issue will be fixed through the next Hikashop release.