-
-
Save sonipb/6dda377b2c18b89371c560556f6c2bb8 to your computer and use it in GitHub Desktop.
WooCommerce Change User Role on Purchase of Specific Product
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function lgbk_add_member( $order_id ) { | |
$order = new WC_Order( $order_id ); | |
$items = $order->get_items(); | |
foreach ( $items as $item ) { | |
$product_name = $item['name']; | |
$product_id = $item['product_id']; | |
$product_variation_id = $item['variation_id']; | |
} | |
if ( $order->user_id > 0 && $product_id == '48' ) { | |
update_user_meta( $order->user_id, 'paying_customer', 1 ); | |
$user = new WP_User( $order->user_id ); | |
// Remove role | |
$user->remove_role( 'customer' ); | |
// Add role | |
$user->add_role( 'subscriber' ); | |
} | |
} | |
add_action( 'woocommerce_order_status_completed', 'lgbk_add_member' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment