I am unsure where to find that HTML code that requires the change and would appreciate any simple instructions. I'm not great at HTML but my son has good ability and he's asking me what files need to be changed. Thanks folks
Sure, you'll find the field in:
\templates\customer\edit_address\template.html
Look for "ship_street2". Be careful just removing that field since some customers may lose info they already have in there. Instead you could wrap it in a check for any content already present, like this:
[%if [@ship_street2@]%]
... existing input field...
[%/if%]
Just keep in mind that even with repeat business, very few customers will use this page. The usual process is:
Register new account (sets name & email but not address) > Checkout first order (sets ship address)
Customers would only see that template you are editing if they actually log into their account and choose to edit their shipping address. Most would just do this on future orders during the checkout.
Unfortunately Neto's checkout can't be modified. It's not controlled by the usual site templates. You could remove the Address Line 2 from the My Account pages where a customer signs up or modifies their details, but this would only affect a tiny proportion of your orders - almost all addresses will be entered in the checkout.
Thanks, Eric, 80% of our customers are repeating and have ongoing logins (accounts) so yes I think it would be useful to have that in the Account Pages. I would appreciate it if you could let me know the relevant files I would need to change. Many thanks in advance
Many thanks Eric. Appreciate your help