在Woocommerce Admin Edit Orders页面中显示客户取消的订单数

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

我正在尝试计算客户已取消的订单数量,并在管理订单屏幕中显示这些订单。

我的问题是我不能让它为远程客户工作,我可以让它为我自己工作(作为current_user)。

这是我的代码(取自其他谷歌搜索和一些小修改):

function count_order_no( $atts, $content = null ) {
$args = shortcode_atts( array(
    'status' => 'cancelled',
), $atts );
$statuses    = array_map( 'trim', explode( ',', $args['status'] ) );
$order_count = 0;
foreach ( $statuses as $status ) {
    // if we didn't get a wc- prefix, add one
    if ( 0 !== strpos( $status, 'wc-' ) ) {
        $status = 'wc-' . $status;
    }
    $order_count += wp_count_posts( 'shop_order' )->$status;
}
ob_start();
echo number_format( $order_count );
return ob_get_clean();
} 
add_shortcode( 'wc_order_count', 'count_order_no' );

然后在管理员中显示该号码

// print the number
function print_the_number() { 
 echo do_shortcode( '[wc_order_count]' );
}

// add the action 
add_action( 'woocommerce_admin_order_data_after_order_details', 'print_the_number', 10, 1 ); 

任何帮助深表感谢!

php wordpress woocommerce backend orders
1个回答
2
投票

您需要从当前订单中定位客户ID。它可以以更简单的方式完成。

你应该试试这个:

add_action( 'woocommerce_admin_order_data_after_order_details', 'get_specific_customer_orders', 10, 1 );
function get_specific_customer_orders( $order ) {

    $customer_orders = get_posts( array(
        'numberposts' => -1,
        'meta_key'    => '_customer_user',
        'meta_value'  => $order->get_customer_id(),
        'post_type'   => 'shop_order',
        'post_status' => array('wc-cancelled'),
    ) );

    $orders_count = '<strong style="color:#ca4a1f">' . count($customer_orders) . '</strong>';

    echo'<br clear="all">
    <p>' . __( 'Cancelled orders count: ' ) . $orders_count . '</p>';
}

代码位于活动子主题(或活动主题)的function.php文件中或任何插件文件中。

经过测试和工作。

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