please, open “Misc Settings” and mark checkbox “Export all order notes”
sorry i have found the answer
created a custom meta key and used below
add_filter('woe_get_order_value_system_notes',function ($value, $order,$fieldname) {
remove_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) );
$args = array(
'post_id' => $order->get_id(),
'approve' => 'approve',
'type' => 'order_note',
'orderby' => 'comment_ID',
'order' => 'ASC',
);
$notes = get_comments( $args );
$lines = array();
foreach($notes as $note) {
if (strpos($note->comment_content,'Packed By') !== false) {
$lines[] = $note->comment_content;
}
}
return join("n",$lines);
},10,3);
-
This reply was modified 6 years, 1 month ago by
prodograw.