1 回答

TA貢獻1804條經驗 獲得超2個贊
獲取by數量的自定義函數
completed orders
是user id
基于get_order_count( &$customer );
/**
?* Return the number of orders this customer has.
?*
?* @since 3.0.0
?* @param WC_Customer $customer Customer object.
?* @return integer
?*/
public function get_order_count( &$customer ) {
? ? $count = get_user_meta( $customer->get_id(), '_order_count', true );
? ? if ( '' === $count ) {
? ? ? ? global $wpdb;
? ? ? ? $count = $wpdb->get_var(
? ? ? ? ? ? // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
? ? ? ? ? ? "SELECT COUNT(*)
? ? ? ? ? ? FROM $wpdb->posts as posts
? ? ? ? ? ? LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
? ? ? ? ? ? WHERE? ?meta.meta_key = '_customer_user'
? ? ? ? ? ? AND? ? ?posts.post_type = 'shop_order'
? ? ? ? ? ? AND? ? ?posts.post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
? ? ? ? ? ? AND? ? ?meta_value = '" . esc_sql( $customer->get_id() ) . "'"
? ? ? ? ? ? // phpcs:enable
? ? ? ? );
? ? ? ? update_user_meta( $customer->get_id(), '_order_count', $count );
? ? }
? ? return absint( $count );
}
所以我們得到
條件可以通過設置進行調整
usermeta 表中使用了一個標志,因此如果一個人已經是高級會員,則整個代碼不會不必要地重新運行
woocommerce_order_status_completed
使用鉤子 - 此鉤子在 Woocommerce 訂單完成后更改字段值通過代碼中添加的注釋進行解釋
// Based on https://github.com/woocommerce/woocommerce/blob/85a077b939b44500fc01b68d34e711117545f586/includes/data-stores/class-wc-customer-data-store.php#L349-L377
function total_completed_orders( $the_user_id ) {
? ? global $wpdb;
? ??
? ? $count = $wpdb->get_var(
? ? ? ? // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
? ? ? ? "SELECT COUNT(*)
? ? ? ? FROM $wpdb->posts as posts
? ? ? ? LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
? ? ? ? WHERE? ?meta.meta_key = '_customer_user'
? ? ? ? AND? ? ?posts.post_type = 'shop_order'
? ? ? ? AND? ? ?posts.post_status = 'wc-completed'
? ? ? ? AND? ? ?meta_value = '" . esc_sql( $the_user_id ) . "'"
? ? ? ? // phpcs:enable
? ? );
? ? // Return a boolean value based on orders count
? ? return $count;
}
function action_woocommerce_order_status_completed( $order_id ) {
? ? /*** Settings ***/
? ??
? ? // User role in which the customer role must be changed
? ? $premium_user_role = 'premium';
? ??
? ? // Spending min cash in one order
? ? $min_in_one_order = 500;
? ??
? ? // Change role after x completed orders
? ? $change_role_after_x_completed_orders = 3;
? ??
? ? /*** End settings ***/
? ??
? ? $flag = false;
? ??
? ? // Get an instance of the WC_Order object
? ? $order = wc_get_order( $order_id );
? ??
? ? // Is a order
? ? if( is_a( $order, 'WC_Order' ) ) {
? ? ? ? // Get user ID or $order->get_customer_id();
? ? ? ? $user_id = $order->get_user_id();
? ? ? ??
? ? ? ? // Retrieve user meta field for a user.?
? ? ? ? $is_premium = get_user_meta( $user_id, '_customer_is_premium_member', true );
? ? ? ??
? ? ? ? // Is NOT a premium member
? ? ? ? if ( $is_premium != 1 ) {
? ? ? ? ? ? // Count total completed orders
? ? ? ? ? ? $total_completed_orders = total_completed_orders( $user_id );
? ? ? ? ? ??
? ? ? ? ? ? // Total completed orders greater than or equal to change role after x completed orders
? ? ? ? ? ? if ( $total_completed_orders >= $change_role_after_x_completed_orders ) {
? ? ? ? ? ? ? ? $flag = true;
? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? // Get current order total
? ? ? ? ? ? ? ? $order_total = $order->get_total();
? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? // Order total greater than or equal to minimum in one order
? ? ? ? ? ? ? ? if ( $order_total >= $min_in_one_order ) {
? ? ? ? ? ? ? ? ? ? $flag = true;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ??
? ? ? ? ? ? // True, at least 1 condition has been met
? ? ? ? ? ? if ( $flag ) {
? ? ? ? ? ? ? ? // Get the user object
? ? ? ? ? ? ? ? $user = get_userdata( $user_id );
? ? ? ? ? ? ? ? // Get all the user roles as an array.
? ? ? ? ? ? ? ? $user_roles = $user->roles;
? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? // User role contains 'customer'
? ? ? ? ? ? ? ? if ( in_array( 'customer', $user_roles ) ) {
? ? ? ? ? ? ? ? ? ? // Remove customer role
? ? ? ? ? ? ? ? ? ? $user->remove_role( 'customer' );
? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? // Add premium role
? ? ? ? ? ? ? ? ? ? $user->add_role( $premium_user_role );
? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? // Update user meta field based on user ID, set true
? ? ? ? ? ? ? ? ? ? update_user_meta( $user_id, '_customer_is_premium_member', 1 );
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
add_action( 'woocommerce_order_status_completed', 'action_woocommerce_order_status_completed', 10, 1 );
- 1 回答
- 0 關注
- 135 瀏覽
添加回答
舉報