How to see who signup to your site or who is your customer from woo commerce?
-
If a user registered at my site, I can get a new user notification after including this code in functions.php
add_action('woocommerce_created_customer', 'admin_email_on_registration'); function admin_email_on_registration() { $user_id = get_current_user_id(); wp_new_user_notification( $user_id ); }
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
The code above will send a notification to admin whenever a new user signup. However, how do I view them on my control panel or woocommerce itself?
Please assist.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to see who signup to your site or who is your customer from woo commerce?’ is closed to new replies.