Get Billing Address info separately
-
I need to get the billing address info separately. I’ve seen that now in the invoice file it’s getting em at once with
$wpo_wcpdf->billing_address();
. is there a way to get name, address and the rest of the data by their own?something like:
$billing_first_name = get_post_meta($wpo_wcpdf->export->order->id,'_billing_first_name',true); $billing_last_name = get_post_meta($wpo_wcpdf->export->order->id,'_billing_last_name',true); echo $billing_first_name; echo $billing_last_name;
but also for the rest of the data?
https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Get Billing Address info separately’ is closed to new replies.