#3341

stephen
Keymaster

Hi,

To fix this issue please go to file: app/design/frontend/default/sns_nova/template/page/html/header.phtml find and replace the bellow code:

<?php if( strpos($this->helper('core/url')->getCurrentUrl(), 'customer/account/create') === false){ ?>

To:

if( strpos($this->helper('core/url')->getCurrentUrl(), 'customer/account/create') === false && (Mage::getURL('checkout/onepage') != Mage::helper('core/url')->getCurrentUrl()) ){ ?>

The cause is: we’ve custom modal popup for login & register. And on checkout page. Form Date of Birth is load 2 times … It cannot submit

Thanks!