单击“下订单后转换货币]

问题描述 投票:2回答:1

我想将购物车上的所有商品价格从USD转换为其他货币,然后再保存为订单(过帐)。有人可以告诉我有什么woocommerce可以做到这一点吗?有例子会更好。

谢谢。

php wordpress woocommerce currency
1个回答
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;

}
© www.soinside.com 2019 - 2024. All rights reserved.