Skip to content

Instantly share code, notes, and snippets.

@sonipb
Forked from troydean/lgbk_add_member.php
Created September 26, 2017 14:06
Show Gist options
  • Save sonipb/6dda377b2c18b89371c560556f6c2bb8 to your computer and use it in GitHub Desktop.
Save sonipb/6dda377b2c18b89371c560556f6c2bb8 to your computer and use it in GitHub Desktop.
WooCommerce Change User Role on Purchase of Specific Product
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