Want to show client Vat number and client phone number
-
Good Day
I have a question but to sure how to code it. I want to add the two fields to my invoice in the Billing Address Section
The Id for my clients vat number is id= “billing_vat”
and the mobile number is id=”billing_mobile”
I wan to show them in the billing address section in seperate lines,
Also I have added the Country code but it does not show in a new line but shows in the same line as the postal code. how do I let it start in a new line
add_filter( 'wcdn_address_billing', 'wcdn_address_billing', 10, 2 ); function wcdn_address_billing( $address, $order ) { $address .= ', ' . WC()->countries->countries[ $order->get_billing_country() ]; return $address; }
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Want to show client Vat number and client phone number’ is closed to new replies.