<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Membership &#187; Additional Resources</title>
	<atom:link href="http://www.tipsandtricks-hq.com/wordpress-membership/category/additional-resources/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsandtricks-hq.com/wordpress-membership</link>
	<description>Easy to use WordPress Membership plugin</description>
	<lastBuildDate>Thu, 26 Jan 2012 10:07:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>API – Creating A Member Account Using HTTP GET or POST</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/api-creating-a-member-account-using-http-get-or-post-447</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/api-creating-a-member-account-using-http-get-or-post-447#comments</comments>
		<pubDate>Wed, 07 Dec 2011 06:00:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[3rd party integration]]></category>
		<category><![CDATA[API]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=447</guid>
		<description><![CDATA[Depending on your situation you may need to be able to create a member account using a HTTP GET or POST request. WP eMember plugin has an API that allows you to create a member account using a standard HTTP GET or POST request. If you want to use this API then you need to enable it from the settings menu of the plugin first. The following is a screenshot of this section in the settings menu:

Once you enable it, you can start to send HTTP request to the following ...]]></description>
			<content:encoded><![CDATA[<p>Depending on your situation you may need to be able to create a member account using a HTTP GET or POST request. WP eMember plugin has an API that allows you to create a member account using a standard HTTP GET or POST request. If you want to use this API then you need to enable it from the settings menu of the plugin first. The following is a screenshot of this section in the settings menu:</p>
<p><img class="alignnone size-full wp-image-448" title="emember-3rd-party-integration" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2011/12/emember-3rd-party-integration.jpg" alt="" width="558" height="159" /></p>
<p>Once you enable it, you can start to send HTTP request to the following URL to create member account remotely or from another software:</p>
<p>http://www.example.com/wp-content/plugins/wp-eMember/api/create.php</p>
<p>You need a minimum of 5 pieces of information to create a member account using a HTTP request. These are:</p>
<ul>
<li>Secret Word/API Key (you specified it in the settings menu of the plugin)</li>
<li>First Name</li>
<li>Last Name</li>
<li>Email Address</li>
<li>Membership Level ID</li>
</ul>
<div>Optionally, you can pass in the following data with the request (if you do not pass these, a randomly generated value will be used for these)</div>
<div>
<ul>
<li>username</li>
<li>password</li>
</ul>
</div>
<h3>1. Creating Member Account Using  HTTP GET request</h3>
<div>In order to create a member account via HTTP GET use the following format:</div>
<div><code></p>
<p>http://www.example.com/wp-content/plugins/wp-eMember/api/create.php?secret_key=XX&#038;first_name=XX&#038;last_name=XX&#038;email=XX&#038;membership_level_id=XX</p>
<p></code><br />
Replace the “example.com” and “XX” with the appropriate values.<strong>PHP Code Example:</strong>The following is an example of how to construct this link using PHP:<br />
<code><br />
$secret_key = "6bd39ewe43a7bb";<br />
$first_name= "Jon";<br />
$last_name= "Doe";<br />
$email= "jon.doe@gmail.com";<br />
$membership_level_id= "1";<br />
$prepared_data = "?secret_key=".$secret_key."&amp;first_name=".$first_name."&amp;last_name=". $last_name."&amp;email=".$email."&amp;membership_level_id=".$membership_level_id;<br />
$get_url = "http://www.example.com/wp-content/plugins/wp-eMember/api/create.php".$prepared_data;<br />
// Execute this GET Request<br />
file_get_contents($get_url);<br />
</code></div>
<h3>2. Creating Member Account Using  HTTP POST request</h3>
<p>To create a member account via HTTP POST use the following format:<br />
<code><br />
&lt;form method="post" action="http://www.example.com/wp-content/plugins/wp-eMmeber/api/create.php<br />
"&gt;<br />
&lt;input type="hidden" name="secret_key" value="XX"&gt;<br />
&lt;input type="hidden" name="first_name" value="XX"&gt;<br />
&lt;input type="hidden" name="last_name" value="XX"&gt;<br />
&lt;input type="hidden" name="email" value="XX"&gt;<br />
&lt;input type="hidden" name="membership_level_id" value="XX"&gt;<br />
&lt;input type=submit value="Submit Post"&gt;<br />
&lt;/form&gt;<br />
</code><br />
Replace the “example.com” and “XX” with the appropriate value.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/api-creating-a-member-account-using-http-get-or-post-447/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Registration Form for a Particular Membership Level</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/create-a-registration-form-for-a-particular-membership-level-429</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/create-a-registration-form-for-a-particular-membership-level-429#comments</comments>
		<pubDate>Thu, 27 Oct 2011 09:03:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[backdoor registration form]]></category>
		<category><![CDATA[registration form]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=429</guid>
		<description><![CDATA[WP eMember uses ONE registration form for all kinds of membership registration. This way you don&#8217;t have to create multiple pages with different registration forms and confuse your customers. eMember&#8217;s registration form is smart enough to know what type of membership level a customer is trying to create based on the prior action this user has taken. For example, if a customer paid for &#8220;Gold&#8221; membership level then when this user clicks on the unique registration link sent to him via email the eMember plugin will know that this customer ...]]></description>
			<content:encoded><![CDATA[<p>WP eMember uses ONE registration form for all kinds of membership registration. This way you don&#8217;t have to create multiple pages with different registration forms and confuse your customers. eMember&#8217;s registration form is smart enough to know what type of membership level a customer is trying to create based on the prior action this user has taken. For example, if a customer paid for &#8220;Gold&#8221; membership level then when this user clicks on the unique registration link sent to him via email the eMember plugin will know that this customer paid for Gold membership and it will prepare the registration form for that level.</p>
<p>Occasionally, you may need to create a registration form for a particular membership level for a special reason. For example,  give backdoor entrance to your paid membership site to some special people (this way they won&#8217;t have to pay)</p>
<p>Use the following shortcode on a page which will place a registration form for a particular membership level:<br />
<code><br />
[wp_eMember_registration_form_for level=1]<br />
</code><br />
1 is the membership level so change it to the actual membership level that you want to create a registration form for.</p>
<p>Now, when a user registers using this form he will be signing up for that particular level.</p>
<p>You can also hide this special registration page from the standard WordPress navigation menu using a plugin similar to the “Page Exclude” plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/create-a-registration-form-for-a-particular-membership-level-429/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP eMember Frequently Asked Questions (FAQ)</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-frequently-asked-questions-faq-66</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-frequently-asked-questions-faq-66#comments</comments>
		<pubDate>Thu, 15 Sep 2011 12:13:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=66</guid>
		<description><![CDATA[
Does this plugin work with the latest version of WordPress?

Yes, all of our plugins work with the latest version of WordPress.

Are there any ongoing fees for WP eMember plugin?

No, the WP eMember plugin is a one time purchase software.

Why buy a premium WordPress plugin?

See the why buy a premium WordPress plugin page.

Does this product integrate with WordPress&#8217;s user system?

Yes, the WP eMember can create a WordPress user login with the same details as the membership when the customer registers.

How does the member get the registration link after a purchase is made?

The ...]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong><em>Does this plugin work with the latest version of WordPress?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes, all of our plugins work with the latest version of WordPress.</p>
<ul>
<li><strong><em>Are there any ongoing fees for WP eMember plugin?</em></strong></li>
</ul>
<p style="padding-left: 60px;">No, the WP eMember plugin is a one time purchase software.</p>
<ul>
<li><em><strong>Why buy a premium WordPress plugin?</strong></em></li>
</ul>
<p style="padding-left: 60px;">See the <a href="http://www.tipsandtricks-hq.com/why-buy-a-premium-wordpress-plugin" target="_blank">why buy a premium WordPress plugin</a> page.</p>
<ul>
<li><strong><em>Does this product integrate with WordPress&#8217;s user system?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes, the WP eMember can create a WordPress user login with the same details as the membership when the customer registers.</p>
<ul>
<li><strong><em>How does the member get the registration link after a purchase is made?</em></strong></li>
</ul>
<p style="padding-left: 60px;">The member is email out a link to complete the registration process after they have completed their payment.</p>
<ul>
<li><strong><em>Can a customer sign up for a recurring membership if they do not have a PayPal account?</em></strong></li>
</ul>
<p style="padding-left: 60px;">PayPal requires a PayPal account for all recurring payments. If your customer does not have a PayPal account they can sign up for one when they go to make the purchase at PayPal.</p>
<ul>
<li><strong><em>What type of license does the WP eMember have, can I use this plugin on more than one site?</em></strong></li>
</ul>
<p style="padding-left: 60px;"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-license-agreement-31" target="_blank">Read the WP eMemeber Licensing Details</a>.</p>
<ul>
<li><strong><em>Can I translate the WP eMember plugins in to my own language?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes, You can translate the front end of the plugin (the information that the customer sees). You can read more about this <a href="http://www.tipsandtricks-hq.com/forum/topic/plugin-language-translation" target="_blank">here</a>.</p>
<ul>
<li><strong><em>If I buy the WP eStore, WP eMember and WP Affiliate plugins and activate and setup all 3, will I be able to run a membership site that charged a monthly RECURRING price with the affiliate program, giving the affiliate commission each month the member is signed up?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes</p>
<ul>
<li><strong><em>Is there a limit to the membership levels or members I can have?</em></strong></li>
</ul>
<p style="padding-left: 60px;">No, there is not a limit on membership levels or the number of members you can have.</p>
<ul>
<li><strong><em>What forum plugin can I use with the eMember?</em></strong></li>
</ul>
<p>There are a few forum plugins you can use with the eMember. You can see all of the options <a href="http://www.tipsandtricks-hq.com/forum/topic/e-member-with-forum" target="_blank">here</a>.<strong><em><br />
</em></strong></p>
<ul>
<li><strong><em>What payment gateways can I use for my membership site?</em></strong></li>
</ul>
<p style="padding-left: 60px;">The WP eMember can be integrated with PayPal and ClickBank in a standalone setup. You can also integrate eMember with WP eStore which allows you to use any of the Payment Gateways offered by the eStore plugin. Read more on this on our <a href="http://www.tipsandtricks-hq.com/wordpress-membership/" target="_blank">Documentation site</a>.</p>
<ul>
<li> <strong><em>What AutoResponders can the WP eMember integrate with?</em></strong></li>
</ul>
<p style="padding-left: 60px;">The WP eMember can integrate with AWeber, MailChimp, GetResponse autoresponders.</p>
<ul>
<li><strong><em>Can I protect only a section of a post and have some teaser content that everyone can see?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes you can protect just a section of a post or page. There are a few options on how you can do this, for more information on these options go <a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=88" target="_blank">here</a>.</p>
<ul>
<li><strong><em>Can I drip content to my members?</em></strong></li>
</ul>
<p style="padding-left: 60px;"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=194" target="_blank">Read this document for more information about this feature</a></p>
<ul>
<li><em><strong>If I change membership plugins do my members have to recreate their recurring payments again</strong>?</em></li>
</ul>
<p style="padding-left: 60px;">Yes, PayPal does not allow you to modify a recurring payment once it is established.</p>
<ul>
<li><strong><em>Can I have it so members have to be approved by the admin after they sign up for a membership before they can view the content? </em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes</p>
<ul>
<li><strong><em>Can I have both free and paid memberships at the same time?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes, you can have both free and paid memberships for your membership site.</p>
<ul>
<li><strong><em>Can I have a trial period with the WP eMember?</em></strong></li>
</ul>
<p style="padding-left: 60px;">Yes, you simply create a subscription payment option with trial period.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-frequently-asked-questions-faq-66/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WP eMember Miscellaneous Tweaks</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248#comments</comments>
		<pubDate>Mon, 16 Aug 2010 01:48:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=248</guid>
		<description><![CDATA[If you are a developer and want to customize the code or if you want to add conditions around your content (can be useful when you want to protect content that you added to your theme&#8217;s template file) then here are a few code examples that might be of some help:
Find out if a member is logged in or not
You can use the following function call to determine if a member is logged in or not. The following function call will return true if a member is logged in (otherwise it ...]]></description>
			<content:encoded><![CDATA[<p>If you are a developer and want to customize the code or if you want to add conditions around your content (can be useful when you want to protect content that you added to your theme&#8217;s template file) then here are a few code examples that might be of some help:</p>
<h3>Find out if a member is logged in or not</h3>
<p>You can use the following function call to determine if a member is logged in or not. The following function call will return true if a member is logged in (otherwise it will return false)<br />
<code><br />
wp_emember_is_member_logged_in()<br />
</code></p>
<p>You can utilize the above function in the following way to ad code in your theme&#8217;s template file to add conditional block (for example: show a special message to your logged in users):<br />
<code><br />
&lt;?php if(wp_emember_is_member_logged_in()) { ?&gt;<br />
//Place your special message for members here<br />
&lt;?php } ?&gt;<br />
</code><br />
The following example can be useful if you want to show ad to non-members of the site:<br />
<code><br />
&lt;?php if(!wp_emember_is_member_logged_in()) { ?&gt;<br />
//Place your ad code here<br />
&lt;?php } ?&gt;<br />
</code></p>
<p>The following example can be useful if you want to show a message to a member who belongs to membership level 1:<br />
<code><br />
&lt;?php if(wp_emember_is_member_logged_in('1')) { ?&gt;<br />
//Place your special message for members from membership level with ID 1<br />
&lt;?php } ?&gt;<br />
</code></p>
<p>The following PHP code example shows how you can programmatically retrieve the member ID of a member and add condition:<br />
<code><br />
&lt;?php<br />
</code><code>global $emember_auth;<br />
$user_id = $emember_auth-&gt;getUserInfo('member_id');<br />
if (!empty($user_id))<br />
{<br />
//pleace code that only members can see<br />
}<br />
?&gt;</code></p>
<h3>Hiding Post Title From Non Members</h3>
<p>We will use the &#8220;wp_emember_is_member_logged_in&#8221; function (explained above) to modify the &#8220;Twenty Eleven&#8221; theme and make the post title only visible to users who are logged in.<br />
This is an example for when a post is displayed on a single page &#8211; ie, I edited the content-single.php file:</p>
<p>The original line of code was as follows:<br />
<code><br />
&lt;h1 class="entry-title"&gt;&lt;?php the_title(); ?&gt;<br />
</code><br />
To hide the post heading/title , I modified it as follows:<br />
<code><br />
&lt;h1 class="entry-title"&gt;&lt;?php if(wp_emember_is_member_logged_in()) the_title(); ?&gt;<br />
</code><br />
The above is a simple example which will suppress the post heading if someone is not logged in.</p>
<h3>Get member id and his/her membership level</h3>
<p><code>&lt;?php<br />
global $emember_auth;<br />
$user_id = $emember_auth-&gt;getUserInfo('member_id');<br />
if (!empty($user_id))<br />
{<br />
//User is logged in so add your conditional code here<br />
$membership_level = $emember_auth-&gt;getUserInfo('membership_level');<br />
if($membership_level == 1)<br />
{<br />
//Add stuff for this level<br />
}<br />
}<br />
?&gt;</code></p>
<h3>Show Logged in Member&#8217;s Username or other details</h3>
<p><code>&lt;?php<br />
global $emember_auth;<br />
$username = $emember_auth-&gt;getUserInfo('user_name');<br />
echo "Username of the logged in member: ".$username;<br />
?&gt;</code></p>
<h3>Show Logged in Member&#8217;s Details Using Shortcode</h3>
<p>You can use a shrotcode to show any details of the logged in member on a WordPress post or page. Refer to the <a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=124">eMember shortcode documentation</a> for more details.</p>
<h3>Placing a Registration Form For a Particular Membership Level to Give Backdoor Entrance</h3>
<ul>
<li><a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=429">How to create a Registration Form for a Particular Membership Level</a></li>
</ul>
<p><a name="email_confirm_for_free_membership"></a></p>
<h3>Free Members Must Confirm Their Email Address</h3>
<ul>
<li><a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=460">How to make the free members to confirm their email address</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Bulk Upload/Import Member Details from a CSV File</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-bulk-upload-member-details-from-a-csv-file-243</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-bulk-upload-member-details-from-a-csv-file-243#comments</comments>
		<pubDate>Sun, 15 Aug 2010 05:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[Bulk Upload]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=243</guid>
		<description><![CDATA[You can use the WP CSV to DB plugin to upload member details from a CSV file into the WP eMember&#8217;s database.
Before you use this method please note that if you want to import your WordPress users into eMember then there is an easier option for you. Simply browse to the &#8220;Import WP Users&#8221; tab from the &#8220;Members&#8221; menu and you will be able to import all your WordPress users into eMember.
Setup/Preparation

Install the WP CSV to DB plugin.
Download the members.csv template file and open it using Microsoft Excel.
Fill up the ...]]></description>
			<content:encoded><![CDATA[<p>You can use the <a href="http://www.tipsandtricks-hq.com/?p=2116" target="_blank">WP CSV to DB plugin</a> to upload member details from a CSV file into the WP eMember&#8217;s database.</p>
<p>Before you use this method please note that if you want to import your WordPress users into eMember then there is an easier option for you. Simply browse to the &#8220;Import WP Users&#8221; tab from the &#8220;Members&#8221; menu and you will be able to import all your WordPress users into eMember.</p>
<h3>Setup/Preparation</h3>
<ul>
<li>Install the <a href="http://www.tipsandtricks-hq.com/?p=2116">WP CSV to DB</a> plugin.</li>
<li>Download the <a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/members.csv">members.csv</a> template file and open it using Microsoft Excel.</li>
<li>Fill up the member details; One member per row (There are two example entries in that file so replace them with actual details).</li>
<li>Once you are done entering all your member details then save the file as a CSV file.</li>
</ul>
<h3>Specify the General Options</h3>
<ul>
<li>Enter 2 in the &#8220;Starting Row&#8221; field. This is the row number in the CSV file where you want the plugin to start reading from (the first row is the column titles so you want to read from the 2nd row)</li>
<li>Enter &#8220;wp_wp_eMember_members_tbl&#8221; in the &#8220;Database Table Name&#8221; field (this is the database table name for the WP eMember&#8217;s member table given you haven&#8217;t change the default database prefix of wordpress)</li>
<li>Enter the content of this <a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/eMember_column_names.txt" target="_blank">text file</a> in the &#8220;Column Names&#8221; field:</li>
</ul>
<h3>Specify the Input CSV file</h3>
<p>Use the upload option to upload the CSV file created in the setup/preparation step.</p>
<h3>Import into the Database</h3>
<p>Hit the &#8220;Import to DB&#8221; button which will dump the member details from the CSV file into the database.</p>
<p>Now if you browse to the &#8220;Member&#8221; menu of WP eMember, you should see all the new members that you just added.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-bulk-upload-member-details-from-a-csv-file-243/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WP eMember Plugin Features</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-plugin-features-168</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-plugin-features-168#comments</comments>
		<pubDate>Fri, 30 Apr 2010 14:05:35 +0000</pubDate>
		<dc:creator>Ivy</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=168</guid>
		<description><![CDATA[Below is a list of the main features of the WP eMember Plugin:
Content Protection

Ability to selectively protect the posts, pages, categories and comments
Selectively protect full or section of a post or page.
Ability to set protection settings for posts and pages in bulk from eMember&#8217;s dashboard or set the protection of a particular WordPress post or page while editing/creating it in the editor
Teaser content &#8211; Ability to use &#8220;more&#8221; tag protection to create teaser content
Secure RSS feeds - Secure RSS feeds allow your members to view their membership material in their RSS ...]]></description>
			<content:encoded><![CDATA[<p>Below is a list of the main features of the WP eMember Plugin:</p>
<h3>Content Protection</h3>
<ul>
<li>Ability to selectively protect the posts, pages, categories and comments</li>
<li>Selectively protect full or section of a post or page.</li>
<li>Ability to set protection settings for posts and pages in bulk from eMember&#8217;s dashboard or set the protection of a particular WordPress post or page while editing/creating it in the editor</li>
<li>Teaser content &#8211; Ability to use &#8220;more&#8221; tag protection to create teaser content</li>
<li>Secure RSS feeds - Secure RSS feeds allow your members to view their membership material in their RSS reader</li>
<li>Login restriction by IP Address - If the number of login attempts from different IP addresses exceed the specified limit then the member&#8217;s account will be locked</li>
<li>Domain Level Lockdown &#8211; ability to restrict anonymous visitor access to your site at a domain level (the site won&#8217;t even load unless the visitor logs in as a member). The only page the visitor will be able to access on the site when not logged in is the &#8220;Join Us&#8221; page.</li>
<li>Google First Click Free (GFCF) &#8211; eMember lets you use Google First Click Free feature so your protected content can be indexed by Google search if you want (<a title="WordPress membership and Google first click free feature" href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=413" target="_blank">view full details</a>).</li>
</ul>
<h3>Membership Options</h3>
<ul>
<li>Unlimited membership levels &#8211; Your membership site can have as many &#8220;levels&#8221; as you need</li>
<li>Unlimited members. You can have an unlimited number of members with the eMember plugin</li>
<li>Multi-level access option - Give your members access to multiple levels within your membership site.</li>
<li>Flexible membership options- eMember gives you the flexibility to create different types of membership levels. e.g. free, trial, and paid memberships</li>
<li>A member can buy multiple membership levels. In this scenerio the member will be able to access content from all the different membership levels that he/she purchased.</li>
<li>Subscription length control. You can control the length of each member&#8217;s access to your membership site.  A membership will automatically expire when the set time has been reached (e.g. 7 days, 1 month, 1 year etc)</li>
<li>One time payment membership option - if you do not want to offer a subscription based membership then you can use the one time payment option (e.g. a once off payment of $49.95 for a full year membership)</li>
<li>Auto Upgrade &#8211; You can setup scheduled upgrade of member&#8217;s membership level (e.g a member of silver membership will be automatically upgraded to gold membership after 1 month). This model can be used to drip content or deliver course materials to students in a timely fashion</li>
<li>Ability to manually approve members after they register. Members will not be able to log in until you manually approve their account</li>
<li>Ability to schedule automatic renewal email notice to the members before their membership account gets expired.</li>
</ul>
<h3>Setup and Design</h3>
<ul>
<li>Simple installation with new and existing WordPress blog &#8211; Turn your existing or new WordPress blog into a membership site by simply installing the WP eMember and configuring a few basic settings</li>
<li>Fully automated membership system</li>
<li>Source code is non-encrypted - If you are a developer and would like to make customizations for your install then you are welcome to do so</li>
<li>Ability to customize <a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=221" target="_blank">what fields show up on the registration and edit profile forms</a></li>
<li>Easy member management. You can easily view your members, their registration status, membership level etc</li>
<li>Bookmarking feature &#8211; your members can bookmark their favourite posts and pages then view their bookmarks later</li>
<li>Login redirection - Control the first page your members view when they login. You can specify a different redirection page for each membership level. This is very useful for adding welcome messages, information for that membership level, updates, news and events etc</li>
<li>Membership login can be placed in a post, page, or sidebar</li>
<li>Compatible with the current version of WordPress</li>
<li>Lightweight &#8211; WP eMember is a lightweight and easy to use membership plugin</li>
<li>WP eMember is compatible with all properly coded (valid xHTML code) themes</li>
</ul>
<h3>Member Login Related</h3>
<div>
<ul>
<li>Ability to place the member login widget anywhere on your site</li>
<li>Ability to use a compact login option (<a href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=203">view more details</a>).</li>
<li>Ability to use a Fancy login option (a login window pops up when the login link is clicked). There are two different fancy login options for you to choose from.</li>
<li>Ability to setup an after login redirection page (this allows you to set the first page your members see when they login). You can also customize this on a per membership level basis so that members from different membership levels can have different after login landing page.</li>
<li>Ability to force your members to re-authenticate after XX minutes of browsing. When you enable this feature the members will get logged out after XX minutes from their sign in time and they will need to re-login.</li>
</ul>
<h3>Member Registration Form</h3>
<div>
<ul>
<li>Ability to customize what fields are included in the member registration form</li>
<li>Ability to add custom registration fields to the member registration form (<a title="Customize the membership registration form fields" href="http://www.tipsandtricks-hq.com/wordpress-membership/?p=221">view more details</a>)</li>
<li>Real time registration form field validation</li>
<li>Single registration form for all types of membership to help you keep a clean and simple setup.</li>
<li>Ability to setup an automatic after registration redirection</li>
</ul>
</div>
</div>
<h3>Integration Option</h3>
<ul>
<li>Pre-integrated with the <a href="http://www.tipsandtricks-hq.com/?p=1059" target="_blank">WP eStore</a> plugin. This allows you to setup one time or recurring payments for membership payments. You can also display a member&#8217;s purchase history when they make purchases using eStore.</li>
<li>Pre-integrated with the <a href="http://www.tipsandtricks-hq.com/?p=1474" target="_blank">WP Affiliate platfrom</a> plugin. So if you decide to boost your membership signups by introducing an Affiliate Program (award affiliates that redirect visitors who become your member) later then all you have to do is activate the other plugin</li>
<li>Simple PayPal button integration. You can use the eMember with a simple PayPal button for one time payments and recurring payments</li>
<li>Can be integrated with <a href="http://www.aweber.com/?330987" target="_blank">AWeber</a>, MailChimp, GetResponse to automatically sign up the members to your Autoresponder list</li>
</ul>
<h3>Miscellaneous</h3>
<ul>
<li>Free technical support &#8211; please see our support options <a href="http://www.tipsandtricks-hq.com/support" target="_self">here</a></li>
<li>Free updates - please see how updates are handled <a href="http://www.tipsandtricks-hq.com/forum/topic/how-and-when-do-you-get-an-update" target="_blank">here</a></li>
</ul>
<p>Visit the <a href="http://www.tipsandtricks-hq.com/?p=1706" target="_blank">WP eMember (WordPress Membership)</a> plugin page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-plugin-features-168/feed</wfw:commentRss>
		<slash:comments>62</slash:comments>
		</item>
		<item>
		<title>Typical Member Registration Flow</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/a-typical-member-registration-flow-96</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/a-typical-member-registration-flow-96#comments</comments>
		<pubDate>Sat, 26 Dec 2009 01:23:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Additional Resources]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=96</guid>
		<description><![CDATA[WP eMember was designed in a way so you as the admin have some customization freedom as to how the membership registration flows.
It is a good idea to read this post first and make up you mind on how you want your registration process to flow before you start setting eMember up.
If you are not sure about the difference between a &#8220;Join Us&#8221; page and a &#8220;Registration&#8221; page then please read this post first.
The member registration flow is the same for signing up for any type of membership except the free ...]]></description>
			<content:encoded><![CDATA[<p>WP eMember was designed in a way so you as the admin have some customization freedom as to how the membership registration flows.</p>
<p>It is a good idea to read this post first and make up you mind on how you want your registration process to flow before you start setting eMember up.</p>
<p>If you are not sure about the difference between a &#8220;Join Us&#8221; page and a &#8220;Registration&#8221; page then please read <a href="http://www.tipsandtricks-hq.com/forum/topic/the-difference-between-registration-page-and-join-us-page" target="_blank">this post</a> first.</p>
<p>The member registration flow is the same for signing up for any type of membership except the free one (if you want to allow free membership). The registration process for the &#8220;Free Membership&#8221; is slightly different because this one doesn&#8217;t have any payment involved.</p>
<p>WP eMember uses one registration page for all types of membership registration (there is no need to create multiple pages for multiple different membership levels). Full details of how eMember does this is <a href="http://www.tipsandtricks-hq.com/forum/topic/how-one-single-registration-form-is-used-in-emember-for-all-types-of-membership" target="_blank">explained here</a>.</p>
<h3>Member Signup Scenario 1</h3>
<p>The basic member registration flow is similar to the following:</p>
<ol>
<li>Visitors land on your site.</li>
<li>Want to become a member after seeing some of the awesome content.</li>
<li>Follows the &#8221;Join Us&#8221; link.</li>
<li>The above mentioned link will take them to the &#8220;Membership Join Us&#8221; Page where you have explained all the different types of membership you offer. It may look similar to the one <a href="http://www.tipsandtricks-hq.com/eMember-demo/members-home/join-us" target="_blank">here</a>.</li>
<li>From this page they can decide which membership option they want to choose (eg. Free, Silver, Gold or whatever you are offering)</li>
<li>If they choose the &#8220;Free Membership&#8221; then they just follow the link and sign up for a free membership. Remember, the free membership sign up is only possible if you (the admin) allow free membership on your site.</li>
<li>If they choose a &#8220;Paid Membership&#8221; then they make a payment by clicking on the payment button for the appropriate membership.</li>
<li>Once the Payment is confirmed (at this point the plugin knows what type of membership this member wants), the plugin will create the appropriate membership account for this visitor.</li>
<li>The member will receive an email that contains a &#8220;unique&#8221; link to complete the registration.</li>
<li>When the member clicks on that link in the email it will let them choose a &#8220;username&#8221; and &#8220;password&#8221; and complete the registration. At this point the member can log into the site.</li>
</ol>
<p>Step 9 and 10 are additional steps that allows the member to choose their own &#8220;username&#8221; and &#8220;password&#8221;. Many membership plugin just randomly creates a &#8220;username&#8221; and &#8220;password&#8221; for the member and completes the process at step 8. From my experience I know that most people do not like to receive random &#8220;username&#8221; and &#8220;password&#8221; assigned to them so in WP eMember I made sure the members can choose the login credentials.</p>
<h3>Member Signup Scenario 2</h3>
<p>In this registration flow you make the visitor signup for a basic free account before they make any payment for premium membership:</p>
<ol>
<li>Visitors land on your site.</li>
<li>Want to become a member after seeing some of the awesome content.</li>
<li>Follows the &#8221;Join Us&#8221; link.</li>
<li>The above mentioned link will take them to the &#8220;Membership Join Us&#8221; Page where you have a registration form for basic free membership. You instruct them to create an account first before they can make payment for premium content (the payment buttons for the premium content are protected so only logged in members can view the buttons).</li>
<li>After they create a free account they can log into the site and pay for premium content.</li>
<li>Once the Payment is confirmed (at this point the plugin knows what type of premium membership this member wants), the plugin will simply upgrade the basic free account to the appropriate premium account level.</li>
</ol>
<p>This registration flow is different than the one explained in &#8220;scenario 1&#8243; in the way that everyone who makes a payment already has a basic membership account so there is no need to prompt them to complete the registration by choosing a &#8220;username&#8221; and &#8220;password&#8221; as they have already done it when they created the basic membership account.</p>
<h3>Member Signup Scenario 3</h3>
<p>This registration flow is more suited for sites where you want to sell products only to members of the site. Basically a visitor must have an account on your site to be able to purchase products (similar to amazon, iTunes etc)</p>
<ol>
<li>Visitors land on your site.</li>
<li>Want to purchase some of the awesome products you have for sale.</li>
<li>All the &#8220;Buy&#8221; buttons are protected using section protection of the eMember plugin so the member can&#8217;t purchase anything unless they create an account and log in.</li>
<li>They click on the &#8220;Join Us&#8221; link that takes them to the &#8220;Membership Join Us&#8221; Page where you have a registration form for basic free membership.</li>
<li>Creating an account is free and it&#8217;s quick so they sign up for an account and then log in to the newly created account.</li>
<li>Now they can see all the &#8220;Buy&#8221; buttons and go ahead with the purchase.</li>
</ol>
<h3>Member Signup Scenario 3 Extended with WP eStore</h3>
<p>This registration flow is more suited for sites where you want to sell products only to members of the site and using <a href="http://www.tipsandtricks-hq.com/?p=1059" target="_blank">WP eStore</a> to sell the product(s). Basically a visitor must have an account on your site to be able to purchase products (similar to amazon, iTunes etc)</p>
<ol>
<li>Visitors land on your site.</li>
<li>Want to purchase some of the awesome products you have for sale.</li>
<li>Adds a few product to the shopping cart.</li>
<li>When they click on the &#8220;checkout&#8221; button it redirects them to a page that tell them that they need to have an account to be able to checkout or they can log in if they already have an account.</li>
<li>Creating an account is free and it&#8217;s quick so they sign up for an account and then log in to the newly created account.</li>
<li>Now they can continue to checkout and pay for the items.</li>
</ol>
<p>To make WP eStore not let anyone continute to checkout unless they are logged in you simply have to check the &#8220;Only Logged In Members Can Checkout&#8221; field in the &#8220;AddOn Settings&#8221; tab of the WP eStore plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/a-typical-member-registration-flow-96/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.tipsandtricks-hq.com @ 2012-02-08 20:49:52 -->
