• Resolved w1nkeyorg

    (@w1nkeyorg)


    Hello!

    In the invoice, I don’t see the fields for the full address: address, house, apartment, floor and entrance. In the invoice, the address looks like this:

    Delivery address:
    Vasily
    Koltsovskaya 15
    10
    5
    1
    +7xxxxxxx
    xxx@xx.ru

    And you need a full display of this type of information:
    Delivery Address:
    Client: Vasily
    Address: Koltsovskaya 15
    Flat: 10
    Floor: 5
    Entrance: 1
    Phone: +7xxxxxxx
    Email: xxx@xx.ru

    How can this be done?

Viewing 1 replies (of 1 total)
  • Plugin Contributor Yordan Soares

    (@yordansoares)

    Hello @w1nkeyorg,

    You can do that easily using our Professional extension by changing the address format.

    If you prefer to go with a custom template, you can use this:

    $this->order->get_billing_first_name();
    $this->order->get_billing_last_name();
    $this->order->get_billing_company();
    $this->order->get_billing_address_1();
    $this->order->get_billing_address_2();
    $this->order->get_billing_city();
    $this->order->get_billing_state();
    $this->order->get_billing_postcode();
    $this->order->get_billing_country();
    $this->order->get_billing_email();
    $this->order->get_billing_phone();

    Hope this helps you!

Viewing 1 replies (of 1 total)

The topic ‘Delivery address’ is closed to new replies.