Hi All
Yes, this is a issue with the plug, however the fix is pretty easy.
In:
paypal-for-wocommerce / temaplte / paypal-review-order.php
Line 102
Change to this:
$billing_address = array(
‘first_name’ => WC()->customer->firstname. ‘ ‘. WC()->customer->lastname,
‘company’ => WC()->customer->company,
‘address_1’ => WC()->customer->get_billing_address(),
‘address_2’ => WC()->customer->get_billing_address_2(),
‘city’ => WC()->customer->get_billing_city(),
‘state’ => WC()->customer->get_billing_state(),
‘postcode’ => WC()->customer->get_billing_postcode(),
‘country’ => WC()->customer->get_billing_country()
) ;
Should keep you going until plug is updated.
-
This reply was modified 7 years, 11 months ago by matt.hiscock. Reason: Code formatting