Quote:
Originally Posted by DavyMac
I've just noticed that the register page is missing some useful javascript that is available on the default XC. Specifically, the XC default register page has a javascript that provides an information block that explains why the email address is required
With my xtreme gear template clicking in the email field doesn't provide the information block
|
In my 4.5.5 and 4.5.4 dev, AND my production 4.5.4, there is a script that includes:
Code:
$(function() {
$('#email')
.live('blur submit', function(){
$('#email_note').hide();
})
.live('focus', function(){
showNote('email_note', this)
});
This is loaded via an include in file,
/skin/xtreme_gear/customer/main/register.tpl
{include file="check_registerform_fields_js.tpl"}
and I have no idea why the function does not work????
I will open a ticket with TXS on this.