Greetings!
Some time ago I needed to add a 34 characters limit to the address field in the checkout page and in the registration form. No big deal, added a simple maxlength="34" and worked like a charm.
Now I find myself in the need of adding the same limit to the address field when someone changes his/her billing and shipping address in the address book inside the options of his/her account. The URL for that is www.domain.com/customer/address/
Any idea about the path where I can find this?
Solved! Go to Solution.
Hi @simone_romeo,
Following two files for edit address from my account .
app/design/frontend/rwd/default/template/customer/address/edit.phtml app/design/frontend/base/default/template/customer/address/edit.phtml
Check which one is fit for you. Following file is base.
app/design/frontend/base/default/template/customer/address/edit.phtml
Hi @simone_romeo,
Following two files for edit address from my account .
app/design/frontend/rwd/default/template/customer/address/edit.phtml app/design/frontend/base/default/template/customer/address/edit.phtml
Check which one is fit for you. Following file is base.
app/design/frontend/base/default/template/customer/address/edit.phtml
Thank you @Sohel!
The base one worked flawlessly, you've been very helpful!