Hello
What field types do you use ?
I set some fields https://imgur.com/8aHSgxQ and I see results.
Can you share same screenshot?
thanks, Alex
Hello,
I’m having the same issue – I have two text fields and one select field in WC Fields Factory and I added these to my export (they appeared under products > order item fields) and the first field (text) is blank while the other two (select, text) are populated. Please assist?
hello
Does this field have apostrophes in the title ?
Please, add following code to section “Misc Settings”
thanks, Alex
add_filter( "woe_get_order_product_item_meta", function($item_meta ){
foreach($item_meta as $k=>$v) {
$k2 = html_entity_decode ($k,ENT_QUOTES);
$item_meta[$k2] = $v;
}
return $item_meta;
});
Thanks Alex, yes it does have an apostrophe. I thought this might be causing it, so I tried changing the field name but even though I deleted the Orders Export plugin and re-installed, it was still picking up the field with its old name with the apostrophe.
There doesn’t seep to be a spot to put any code under Misc Settings. Could I add this to functions.php instead?
hi
You should mark “Custom PHP code to modify output” inside section “Misc Settings”.
thanks, Alex
Thank you so much – that worked!!!
you’re welcome.
I’ll add this fix in next update