Home  >  Q&A  >  body text

Hide WooCommerce My Account Orders if total purchase amount is 0

<p>In woocommerce, I'm trying to hide an order if the order total is 0. Below is my code but it doesn't work. Any thoughts on the problem? </p> <pre class="brush:php;toolbar:false;">add_filter( 'woocommerce_my_account_my_orders_query', 'hide_zero_total_orders_from_my_account', 10, 1 ); function hide_zero_total_orders_from_my_account( $args ) { $args['meta_query'] = array( array( 'key' => '_order_total', 'value' => 0, 'compare' => '>', 'type' => 'NUMERIC', ), ); return $args; }</pre> <p><br /></p>
P粉545956597P粉545956597451 days ago507

reply all(1)I'll reply

  • P粉037450467

    P粉0374504672023-08-18 00:21:58

    You can use a lightweight SQL query to get the customer's total purchase amount and use that query to hide the "My Account Orders" section if the total purchase amount is equal to 0 (zero):

    // 获取客户购买总金额
    function get_customer_purchases_total_amount(){
        global $wpdb;
    
        return (float) $$wpdb->get_var( $wpdb->prepare( "
            SELECT SUM(pm.meta_value)
            FROM {$wpdb->prefix}posts as p
            INNER JOIN {$wpdb->prefix}postmeta as pm ON p.ID = pm.post_id
            INNER JOIN {$wpdb->prefix}postmeta as pm2 ON p.ID = pm2.post_id
            WHERE p.post_type = 'shop_order'
            AND p.post_status IN ('wc-processing','wc-completed')
            AND pm.meta_key = '_order_total'
            AND pm2.meta_key = '_customer_user'
            AND pm2.meta_value = %d
        ", get_current_user_id() ) );
    }
    
    // 有条件地隐藏“我的账户订单”部分
    add_filter( 'woocommerce_account_menu_items', 'hide_customer_account_orders_conditionally', 100, 1 );
    function hide_customer_account_orders_conditionally( $items ) {
        if ( get_customer_purchases_total_amount() == 0 ) {
            unset( $items['orders'] );
        }
        return $items;
    }
    

    Place the code in your child theme’s functions.php file (or in a plugin). Tested and working fine.

    reply
    0
  • Cancelreply