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.