WooCommerce - 获取价格总计作为数字

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

我是新手,我遇到了这个问题,因为它在收到订单页面上显示 0.00 美元。

// Add Custom WooCommerce Checkout Message
add_action( 'woocommerce_thankyou', 'shop_message', 5 );
function shop_message( $order_id ) {
   $totalamount = $woocommerce->cart->cart_contents_total;


echo '<p class="woocommerce-message">ORDER NUMBER: ' . $order_id . '  And Your Total Price: ' . WC()->cart->get_total() . ' </p>'; // Replace your message here
}
php wordpress woocommerce hook-woocommerce
1个回答
0
投票
// Add Custom Woocommerce Checkout Message
add_action('woocommerce_thankyou', 'shop_message', 5);

function shop_message($order_id) {
    
    $order = wc_get_order($order_id);

    echo '<p class="woocommerce-message">ORDER NUMBER: ' . $order_id . '  And Your Total Price: ' . $order->get_total() . ' </p>'; // Replace your message here
}
© www.soinside.com 2019 - 2024. All rights reserved.