Thank You Algol.plus
I can change this function to show sku of product instead of your name?
I try to change “name”to sku but don’t work.
add_filter(‘woe_get_order_value_all_products’,function ($value, $order,$fieldname) {
$lines = array();
foreach($order->get_items() as $item) {
$lines[] = $item[“name”]. ” x ” .$item[“qty”];
}
return join(“, “, $lines);
},10,3);
It would stay product sku + qty. How i change the name of product to sku product?