Change new user role
-
Hi champions
I am trying to change new user role from contributor, to slug, member.But i have this code, and its not woo commerce. Its a wordprees install.
Can you help?/** Here changing 'customer' role to 'subscriber'.**/ add_filter('woocommerce_new_customer_data', 'wc_assign_custom_role', 10, 1); function wc_assign_custom_role($args) { $args['role'] = 'member'; return $args; }
- This topic was modified 1 year, 1 month ago by . Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Change new user role’ is closed to new replies.