我想将购物车上的所有商品价格从USD转换为其他货币,然后再保存为订单(过帐)。有人可以告诉我有什么woocommerce可以做到这一点吗?有例子会更好。
谢谢。
答案 0 :(得分:2)
您可以使用'woocommerce_checkout_create_order'挂钩。
add_filter( 'woocommerce_checkout_create_order', 'asdf_alter_price', 10, 1 );
function asdf_alter_price ($order) {
// do the conversion - you can do this however you want
$new_price = convert_to_galactic_credits($order->get_total());
$order->set_total( $new_price );
}
return $order;
}