|
If you have installed 1.1.1 version and found that the field taxvat is not being shown on new account forms, please update your files
template/customer/form/register.phtml
template/checkout/onepage/billing.phtml
with the code bellow right after the Day Of Birth (dob) block:
<?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?> <?php if ($_taxvat->isEnabled()): ?> <li> <?php echo $_taxvat->toHtml() ?> </li> <?php endif ?>
Regards,
|