显示客户取消的订单计数在WooCommerce Admin编辑订单页面中



我正在尝试计算客户取消的订单数量并将其放在管理订单屏幕中。

我的问题是我无法为远程客户工作,我可以自己工作(作为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' );

,然后显示admin

中的数字
// 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 ); 

任何帮助都大大关注!

您需要从当前订单中定位客户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文件中。

测试并有效。

我将其用于我的项目:
使用

get_current_user_id()

而不是

$ order-&gt; get_customer_id()

add_shortcode( 'geo-get-customer-orders', 'geo_get_customer_orders' );
function geo_get_customer_orders() {
    global $order;
    $customer_orders = get_posts( array(
        'numberposts' => -1,
        'meta_key'    => '_customer_user',
        'meta_value'  => get_current_user_id(),
        'post_type'   => 'shop_order',
        'post_status' => array('wc-completed'),
    ) );
    echo count($customer_orders);
}

最终使用此快捷代码:

[geo-get-customer-orders]

相关内容

  • 没有找到相关文章

最新更新