外掛技巧
Advanced Order Export For WooCommerce
使用前可先參考官方的介紹案例 :https://docs.algolplus.com/algol_order_export/hooks-filters/
訂單編號前面加英文GG
add_filter('woe_get_order_value_custom_num',function ($value, $order,$fieldname) {
$value = 'GG' .$order->get_order_number();
return $value;
},10,3);
溫層的欄位值修改,客制欄位 additional_temp,以宅急便溫層為案例
add_filter('woe_get_order_value_custom_temp', function ($value, $order, $fieldname) {
$additional_temp_value = get_post_meta($order->get_id(), 'additional_temp', true);
if ($additional_temp_value === '冷凍') {
return '0';
} else {
return '1';
}
}, 10, 3);
add_filter('woe_get_order_value_custom_additional_receitp_id', function ($value, $order, $fieldname) {
$additional_receitp_id_value = get_post_meta($order->get_id(), 'additional_receitp_id', true);
if (empty($additional_receitp_id_value)) {
return '1';
} else {
return '0';
}
}, 10, 3);