Community Support Forums — WordPress® ( Users Helping Users ) — 2010-09-15T13:36:47-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=334 2010-09-15T13:36:47-05:00 http://www.primothemes.com/forums/viewtopic.php?t=334&p=3277#p3277 <![CDATA[Re: Do Multiple Users Require Unique Email Addresses?]]>
Question #1
Is there no legitimate way around the unique email issue. I ask again because it's been 2 months since the original poster to this question asked and we all know 2 mo0nths in Wordpress years is an eternity.

Question#2
This I'm sure is related to question #1 in that I wonder if there is a way to add users without an email address?

I am using this for a club membership process and several husband and wives use the same email and a few members don't want to share their email address with us.

Any help is appreciated.

Statistics: Posted by chipcain — September 15th, 2010, 1:36 pm


]]>
2010-07-08T05:55:09-05:00 http://www.primothemes.com/forums/viewtopic.php?t=334&p=1455#p1455 <![CDATA[Re: Do Multiple Users Require Unique Email Addresses?]]>
Yes, you are correct. Every account MUST have a unique Username/Email Address in the system. There is no way around this. At least, not without breaking the WordPress User database structure. What I would suggest is selling Membership Access to the employers. When the employers fill out the form to have details sent to one of their employees, your form processor can also pass through the original User ID of the employer.

So let's say an Employer has an account with your site, and their WordPress User ID# is 928.

Now, a link goes out to one of their employees, and it looks like this:
Code:
http://mysite.com/answer-questions/?employer=928

Your question/answer system, can now determine
who to send the emails to, using a code snippet like this one:
Code:
<?php
$employer = new WP_User(928);
$employer_first_name = $employer->first_name;
$employer_last_name = $employer->last_name;
$employer_email = $employer->user_email;
?>

Statistics: Posted by Jason Caldwell — July 8th, 2010, 5:55 am


]]>
2010-07-04T22:34:42-05:00 http://www.primothemes.com/forums/viewtopic.php?t=334&p=1384#p1384 <![CDATA[Do Multiple Users Require Unique Email Addresses?]]>
There seems to be a limitation that usernames must have a unique email address. Is there a way to change this and allow multiple users to be setup using a common email address? It seems I need to use a combination of a single page download link and a free membership. The IP address limitations will protest my product. I need to be able to pre-populate a form with the email address of my Customer that would buy access to the same product for multiple employees.

My product is a training program that is basically a Form with an embedded Video. Employers purchase access to this form, they send the link to thte employee, the employee watches the video & answers a few questions, on submission, the form is scored and the results are sent by email to the employer (with a copy of the email results to the webmaster).

The problem is how to pre-populate the form with the email address of the employer when the employee clicks the purchased link and opens the page with the form and email. If a user was logged into the wp site, I could pre-populate the form with the employer's email.

The easiest solution would be to have the employer set up a username and password and use the email address of the employer for the user email. There seems to be a limitation that usernames must have a unique email address. Is there a way to change this and allow multiple users with the same email address?

Statistics: Posted by SWAlarry — July 4th, 2010, 10:34 pm


]]>