HASP Posted February 15, 2022 Share Posted February 15, 2022 (edited) Hello, Atm, I'm using the code: {$customer.addresses[$cart.id_address_delivery]['formatted'] nofilter} but I would like to separate the delivery address to: - name - surname - street - post + city - phone number Some1 can help with code? Code for order confirmation page need them separated for: purchase_summary_mail purchase_summary_name purchase_summary_surname Edited February 15, 2022 by HASP (see edit history) Link to comment Share on other sites More sharing options...
Piotr3qx Posted February 15, 2022 Share Posted February 15, 2022 (edited) Hi, Try these variables, they work for me {$customer.addresses[$cart.id_address_delivery]['firstname'] } {$customer.addresses[$cart.id_address_delivery]['lastname'] } {$customer.addresses[$cart.id_address_delivery]['address1'] } and {$customer.addresses[$cart.id_address_delivery]['address2'] } {$customer.addresses[$cart.id_address_delivery]['postcode'] } and {$customer.addresses[$cart.id_address_delivery]['city'] } {$customer.addresses[$cart.id_address_delivery]['phone'] } Edited February 15, 2022 by Piotr3qx (see edit history) Link to comment Share on other sites More sharing options...
HASP Posted February 15, 2022 Author Share Posted February 15, 2022 Really thanks for your help. Know maybe code for states - voivodeship? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now