M
M
Mordexay2018-08-21 03:47:26
WordPress
Mordexay, 2018-08-21 03:47:26

How to find variable in woprdpress+woocomerce?

hello!
please tell me how to find out the variable "Address line 1" (it is necessary in order to insert it into the letter template)
5b7b60e4d5094838767340.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Eugene, 2018-08-23
@Vagrant0610

If you describe the task, perhaps you will be advised how to implement it in the best way.
In the letter template, enter the following:

// Запишите в $order_id ID заказа.
$order_id = 86;
$order = new WC_Order($order_id);
$address1 = $order->get_shipping_address_1();

Learn more about the WC_Order class and how to get order data (starting with the get_data() method).

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question