我试图让用户在woocommerce中保持所有产品的价格(即用户已下订单但未付款)。
我有以下代码,用于检测用户的所有产品暂停订单
function get_user_on_hold_product_price() {
global $product, $woocommerce;
// GET USER
$current_user = wp_get_current_user();
// GET USER ON-HOLD ORDERS
$customer_orders = get_posts( array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => $current_user->ID,
'post_type' => 'shop_order',
'post_status' => 'wc-on-hold',
) );
我不知道该怎么做才能获得用户所有暂停订单的总价。
将此函数添加/挂钩到这样的短代码;
add_shortcode('get_on-hold_price', 'get_user_on_hold_product_price')
谢谢
使用WC_Order_Query
获取客户“暂停”订单的总量,以提高可用性和兼容性:
add_shortcode('user_on_hold_total', 'get_user_orders_on_hold_total');
function get_user_orders_on_hold_total() {
$total_amount = 0; // Initializing
// Get current user
if( $user = wp_get_current_user() ){
// Get 'on-hold' customer ORDERS
$on_hold_orders = wc_get_orders( array(
'limit' => -1,
'customer_id' => $user->ID,
'status' => 'on-hold',
) );
foreach( $on_hold_orders as $order) {
$total_amount += $order->get_total();
}
}
return $total_amount;
}
代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。
要获得格式化的总金额,请用return $total_amount;
替换return wc_price($total_amount);
短代码使用:
[user_on_hold_total]