Hi,
Thank you for your feedback.
Change the code:
if(!empty($itemFields)) {
foreach($itemFields as $field) {
$namekey = $field->field_namekey;
if(isset($product->$namekey))
$orderProduct->$namekey = $product->$namekey;
}
}
to:
if(!empty($cart->item_fields)) {
foreach($cart->item_fields as $field) {
$namekey = $field->field_namekey;
if(isset($product->$namekey))
$orderProduct->$namekey = $product->$namekey;
}
}
in the file plugins/hikashoppayment/paypalexpress/paypalexpress.php and that should fix the problem.