AI Verified

Name

WooCommerce Change User Role After Purchase

About

This snippet will automatically change the role of users who complete a purchase for specific products. Specific to this example, is any one of the three product IDs defined in the code are in the other, the “Customer” role of the buyer will be removed, and a new role added, “Subscriber”. Be careful using this snippet, you don’t want to inadvertently give customers the ability to edit your store! You can make this code work so that all customers, regardless of the products bought, have a new role – that is a case of removing the if statement and foreach loop. Keep in mind, the role is only changed when the order status is set to Complete (this too can be done automatically as shown in this guide).

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Simply copy the pre-coded solution to your active child theme’s functions.php or preferably the Code Snippets Plugin.

Link for further information:

The author has provided the following URL that may be helpful to setting up or using this snippet:

https://www.ecommercehints.com/woocommerce-change-user-role-after-purchase

Codevault

ecommercehints

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://www.ecommercehints.com/

History

Last modified:

15/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

WooCommerce Change User Role After Purchase

 
                    
1/**
2 * Snippet Name: WooCommerce Change User Role After Purchase
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_action( 'woocommerce_order_status_completed', 'ecommercehints_change_user_role_after_purchase' ); // Order Status must be Complete
7function ecommercehints_change_user_role_after_purchase($order_id) {
8 $order = wc_get_order( $order_id );
9 $items = $order->get_items();
10 $eligible_product_ids = array( '128', '31', '69' ); // Only change if any one of these product IDs are in the order
11 foreach ($items as $item) {
12 if ( $order->user_id > 0 && in_array( $item['product_id'], $eligible_product_ids ) ) {
13 $user = new WP_User( $order->user_id );
14 $user->remove_role( 'customer' ); // The default Customer role is removed
15 $user->add_role( 'subscriber' ); // The new role is added
16 break;
17 }
18 }
19}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

WooCommerce Coupon Usage Limit: Restrict Coupon to 10 Items in Cart

Added: 7 months ago

Last Updated: 7 months ago

This PHP code snippet for WooCommerce allows you to set a usage limit for a specific coupon code. In this example, the code restricts the application of the coupon to a maximum of 10 items in the cart...

WooCommerce

AI Verified

0

Prevent Spam Orders - WooCommerce Checkout

Added: 1 month ago

Last Updated: 1 month ago

WooCommerce

AI Verified

1

WooCommerce Custom Product Tabs

Added: 1 year ago

Last Updated: 1 day ago

This guide shows you how to create a custom product tab shown on the single product template. You may wish to output important shipping information, an unboxing video, links to social media, whatever...

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

6

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 day ago

We want to make this solution absolutely clear from the outset. This snippet does NOT generate the actual number of people viewing the product. It shows a randomly generated number in the range of two...

WooCommerce

AI Verified

5

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 3 days ago

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product...

WooCommerce

AI Verified

3

WooCommerce Add Content Under The Proceed To Checkout Button On The Cart Page

Added: 1 year ago

Last Updated: 1 day ago

How many times have you bought something online and seen trust symbols near the proceed to checkout button on the cart page? “30 Day Money Back Guarantee” or “Secure Checkout” are popular examples. By...