<?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</title>
	<atom:link href="http://www.tipsandtricks-hq.com/wordpress-membership/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsandtricks-hq.com/wordpress-membership</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 27 Aug 2010 06:11:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<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 then here are a few code examples that might be of some help:
Find out if a member is logged in or not

global $auth;
$user_id = $auth-&#62;getUserInfo('member_id');
if (!empty($user_id))
{
    //pleace code that only members can see
}

Get member id and his/her current status

global $auth;
$user_id = $auth-&#62;getUserInfo('member_id');
if (!empty($user_id))
{
    //User is logged in so add your conditional code here
    $membership_level = $auth-&#62;getUserInfo('membership_level');
    if($membership_level == 1)
    {
        //Add stuff for this level
    }
}

]]></description>
			<content:encoded><![CDATA[<p>If you are a developer and want to customize the code 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><code><br />
global $auth;<br />
$user_id = $auth-&gt;getUserInfo('member_id');<br />
if (!empty($user_id))<br />
{<br />
    //pleace code that only members can see<br />
}<br />
</code></p>
<h3>Get member id and his/her current status</h3>
<p><code><br />
global $auth;<br />
$user_id = $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 = $auth-&gt;getUserInfo('membership_level');<br />
    if($membership_level == 1)<br />
    {<br />
        //Add stuff for this level<br />
    }<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Bulk Upload 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>2</slash:comments>
		</item>
		<item>
		<title>WP eMember and MailChimp Integration</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-and-mailchimp-integration-236</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-and-mailchimp-integration-236#comments</comments>
		<pubDate>Sat, 07 Aug 2010 02:30:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[Autoresponder]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=236</guid>
		<description><![CDATA[The WP eMember (membership plugin) can be easily integrated with MailChimp (Email marketing and Email list manager). 
To integrate MailChimp with eMember simply go to the “Autoresponder Settings” tab from the Settings menu of eMember and set it up. 
This will make it so after a member registers on your site he/she will automatically be signed up to your mailchimp list.
]]></description>
			<content:encoded><![CDATA[<p>The WP eMember (membership plugin) can be easily integrated with <a href="http://www.mailchimp.com/signup/monkeyrewards/?aid=76a73e97166d9b6ef8bb86339&amp;afl=1" target="_blank">MailChimp</a> (Email marketing and Email list manager). </p>
<p>To integrate MailChimp with eMember simply go to the “Autoresponder Settings” tab from the Settings menu of eMember and set it up. </p>
<div id="attachment_238" class="wp-caption alignnone" style="width: 570px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/eMember-mailchimp-integration.gif"><img class="size-full wp-image-238" title="eMember-mailchimp-integration" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/eMember-mailchimp-integration.gif" alt="" width="560" height="237" /></a><p class="wp-caption-text">MailChimp Integration for eMember</p></div>
<p>This will make it so after a member registers on your site he/she will automatically be signed up to your mailchimp list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-and-mailchimp-integration-236/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Protect a Post or Page From the Editor</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-protect-a-post-or-page-from-the-editor-231</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-protect-a-post-or-page-from-the-editor-231#comments</comments>
		<pubDate>Tue, 03 Aug 2010 04:59:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=231</guid>
		<description><![CDATA[WP eMember allows you to protect a post or page while you are editing it. When you are editing or writing a new post simply scroll down to the &#8220;eMember Protection Options&#8221; section shown in the following screenshot and apply the protection you want (it will display all the membership levels you have configured on your site so you can easily pick which levels you want to give access to):
]]></description>
			<content:encoded><![CDATA[<p>WP eMember allows you to protect a post or page while you are editing it. When you are editing or writing a new post simply scroll down to the &#8220;eMember Protection Options&#8221; section shown in the following screenshot and apply the protection you want (it will display all the membership levels you have configured on your site so you can easily pick which levels you want to give access to):</p>
<div id="attachment_232" class="wp-caption alignnone" style="width: 461px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/eMember-protect-content-while-editing.gif"><img class="size-full wp-image-232" title="eMember-protect-content-while-editing" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/08/eMember-protect-content-while-editing.gif" alt="" width="451" height="213" /></a><p class="wp-caption-text">Protect Post or Page from the editor</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-protect-a-post-or-page-from-the-editor-231/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Customize Which Fields Appear on the Registration and Edit Profile Page</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-customize-which-fields-appear-in-the-registration-and-edit-profile-page-221</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-customize-which-fields-appear-in-the-registration-and-edit-profile-page-221#comments</comments>
		<pubDate>Sat, 24 Jul 2010 04:22:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[customize registration fields]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=221</guid>
		<description><![CDATA[WP eMember allows you to customize the fields that appear on the registration and edit profile page. You can choose to not display some of the fields depending on your site&#8217;s need.
In order to customize which fields appear on the form please go to the &#8220;Pages Settings&#8221; tab from the eMember settings menu. There are two sections on this page that allows you to turn on/off certain fields from the registration and edit profile page.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tipsandtricks-hq.com/?p=1706" target="_blank">WP eMember</a> allows you to customize the fields that appear on the registration and edit profile page. You can choose to not display some of the fields depending on your site&#8217;s need.</p>
<p>In order to customize which fields appear on the form please go to the &#8220;Pages Settings&#8221; tab from the eMember settings menu. There are two sections on this page that allows you to turn on/off certain fields from the registration and edit profile page.</p>
<div id="attachment_222" class="wp-caption alignnone" style="width: 522px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/customizing-registration-profile-form-fields.gif"><img class="size-full wp-image-222" title="customizing-registration-profile-form-fields" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/customizing-registration-profile-form-fields.gif" alt="" width="512" height="559" /></a><p class="wp-caption-text">Customize which fields appear on the registration form</p></div>
<div id="attachment_223" class="wp-caption alignnone" style="width: 522px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/customizing-edit-profile-form-fields.gif"><img class="size-full wp-image-223" title="customizing-edit-profile-form-fields" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/customizing-edit-profile-form-fields.gif" alt="" width="512" height="648" /></a><p class="wp-caption-text">Customize which fields appear on the edit profile page</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-customize-which-fields-appear-in-the-registration-and-edit-profile-page-221/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using a Compact Login and Join Us Message</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/using-a-compact-login-and-join-us-message-203</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/using-a-compact-login-and-join-us-message-203#comments</comments>
		<pubDate>Tue, 06 Jul 2010 02:41:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[Compact Login]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=203</guid>
		<description><![CDATA[You can use a compact login form if you want to display a one line login and join us message anywhere on your membership site. When a member logs in it displays the name of the loggd in memember and an option to logout.
For example, I have placed this compact login form on the header of my theme and it looks like the following to an anonymous visitor:
When a member logs in it looks like the following:
How to Use the Compact Login Form?
You can use the following shortcode if you are placing ...]]></description>
			<content:encoded><![CDATA[<p>You can use a compact login form if you want to display a one line login and join us message anywhere on your membership site. When a member logs in it displays the name of the loggd in memember and an option to logout.</p>
<p>For example, I have placed this compact login form on the header of my theme and it looks like the following to an anonymous visitor:</p>
<div id="attachment_204" class="wp-caption alignnone" style="width: 570px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/emember-compact-login-before-login.gif"><img class="size-full wp-image-204" title="emember-compact-login-before-login" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/emember-compact-login-before-login.gif" alt="" width="560" height="134" /></a><p class="wp-caption-text">Compact Login Form Display (when not logged in)</p></div>
<p>When a member logs in it looks like the following:</p>
<div id="attachment_205" class="wp-caption alignnone" style="width: 570px"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/emember-compact-login-after-login.gif"><img class="size-full wp-image-205" title="emember-compact-login-after-login" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/07/emember-compact-login-after-login.gif" alt="" width="560" height="134" /></a><p class="wp-caption-text">Compact Login Form Display (when logged in)</p></div>
<h3>How to Use the Compact Login Form?</h3>
<p>You can use the following shortcode if you are placing it on a post or page:<br />
<code><br />
[wp_eMember_compact_login]<br />
</code><br />
If you are placing this on your theme&#8217;s template file then use the following PHP fuction where you want it to appear (e.g. header.php, footer.php etc):<br />
<code><br />
&lt;?php echo eMember_compact_login_widget(); ?&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/using-a-compact-login-and-join-us-message-203/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Use the Auto Upgrade Feature to Drip Content</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-use-auto-upgrade-feature-to-drip-content-194</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-use-auto-upgrade-feature-to-drip-content-194#comments</comments>
		<pubDate>Thu, 01 Jul 2010 13:53:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[Auto Upgrade]]></category>
		<category><![CDATA[Drip Content]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=194</guid>
		<description><![CDATA[What auto upgrade does is that it upgrades the member of any membership level to another membership level automatically in the background based on what you have scheduled (you as the admin can schedule and setup these upgrade paths).
Auto upgrade works based on the time duration that the user stays a member of a particular membership level. This time duration is specified by the admin in the &#8220;Auto Upgrade&#8221; tab under the &#8220;Members&#8221; menu.
So for example, let&#8217;s say you have three membership levels:

Basic Membership
Premium Membership
Ultimate Membership

Now let&#8217;s say you have ...]]></description>
			<content:encoded><![CDATA[<p>What auto upgrade does is that it upgrades the member of any membership level to another membership level automatically in the background based on what you have scheduled (you as the admin can schedule and setup these upgrade paths).</p>
<p>Auto upgrade works based on the time duration that the user stays a member of a particular membership level. This time duration is specified by the admin in the &#8220;Auto Upgrade&#8221; tab under the &#8220;Members&#8221; menu.</p>
<p>So for example, let&#8217;s say you have three membership levels:</p>
<ul>
<li>Basic Membership</li>
<li>Premium Membership</li>
<li>Ultimate Membership</li>
</ul>
<p>Now let&#8217;s say you have set the auto upgrade so that a member who stays as a basic member for 14 days will get automatically get upgraded to premium member.<br />
<code><br />
Basic Membership -&gt; Premium Membership = after 14 days</code></p>
<p>or<br />
<code><br />
Premium Membership -&gt; Ultimate Membership = after 30 days</code></p>
<p>Now For example, if Joe signs up to the Basic membership and stays a member for 14 days he will automatically get upgraded to premium membership after 14 days.</p>
<p>Once a member gets upgraded to the next level he/she gets access to the new content based on this new membership level. This is why this feature is very handy when you are developing a membership site that will be used to deliver an online course and you want to drip the course content over a period of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-use-auto-upgrade-feature-to-drip-content-194/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Create Payment Buttons for Membership Upgrade</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-create-payment-buttons-for-membership-upgrade-189</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-create-payment-buttons-for-membership-upgrade-189#comments</comments>
		<pubDate>Thu, 01 Jul 2010 13:32:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[Account Upgrade]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=189</guid>
		<description><![CDATA[If you have a membership site with multiple premium memberships then you probably want to offer your members an option to upgrade their account. Upgrading an account is very easy. When a member wishes to upgrade his/her account, all this member has to do is purchase the appropriate premium membership from the &#8220;Join Us/Payment&#8221; page (you have already configured this page as part of the setup) while he/she is logged into the site as an existing member. The account will get upgraded automatically once the payment is processed.
If you want to add a little bit of ...]]></description>
			<content:encoded><![CDATA[<p>If you have a membership site with multiple premium memberships then you probably want to offer your members an option to upgrade their account. Upgrading an account is very easy. When a member wishes to upgrade his/her account, all this member has to do is purchase the appropriate premium membership from the &#8220;Join Us/Payment&#8221; page (you have already configured this page as part of the setup) while he/she is logged into the site as an existing member. The account will get upgraded automatically once the payment is processed.</p>
<p>If you want to add a little bit of flavour to your membership upgrade path then create special payment buttons that are just like the payment button for the normal premium membership but with a discounted price. Then place it on a page that only premium members have access to. Now, your members can make payment using these buttons to upgrade their account at a discounted price. Since this page that contains these buttons can only be viewed by a premium member, an anonymous visitor won&#8217;t be able to signup at this special price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-create-payment-buttons-for-membership-upgrade-189/feed</wfw:commentRss>
		<slash:comments>0</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
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 reader
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
Domain Level Lockdown &#8211; ability ...]]></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>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>
</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>Flexible membership options- eMember gives you the flexibility to create different types of membership levels. e.g. free, trial, and paid memberships</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>
</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>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>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> to automatically sign up the members to your AWeber 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</a> (WordPress Membership) plugin page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-plugin-features-168/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>How to Display a Member&#8217;s Purchase History</title>
		<link>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-display-a-members-purchase-history-158</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-display-a-members-purchase-history-158#comments</comments>
		<pubDate>Mon, 26 Apr 2010 13:45:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design & Usage]]></category>
		<category><![CDATA[Purchase History]]></category>
		<category><![CDATA[WP eMember]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/wordpress-membership/?p=158</guid>
		<description><![CDATA[When a member makes a purchase through eStore while logged in, it will be recorded. The member can then view his/her purchase history.
You can use the following shortcode on a post or page to display a member&#8217;s purchase history:
[wp_eStore_members_purchase_history]
It will display the purchase history of the member who is logged in and viewing that post or page. Please note that the purchase history only works for purchases done via the eStore plugin so you will need to have both eMember and eStore installed on your server (the above shortocode is ...]]></description>
			<content:encoded><![CDATA[<p>When a member makes a purchase through eStore while logged in, it will be recorded. The member can then view his/her purchase history.</p>
<p>You can use the following shortcode on a post or page to display a member&#8217;s purchase history:</p>
<p>[wp_eStore_members_purchase_history]</p>
<p>It will display the purchase history of the member who is logged in and viewing that post or page. Please note that the purchase history only works for purchases done via the eStore plugin so you will need to have both eMember and eStore installed on your server (the above shortocode is actually an eStore shortcode).</p>
<p>The purchase history looks similar to the following screenshot:</p>
<div class="mceTemp">
<dl id="attachment_159" class="wp-caption alignnone" style="width: 485px;">
<dt class="wp-caption-dt"><a href="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/04/members-purchase-history-sc.JPG"><img class="size-full wp-image-159 " title="members-purchase-history-sc" src="http://www.tipsandtricks-hq.com/wordpress-membership/wp-content/uploads/2010/04/members-purchase-history-sc.JPG" alt="members-purchase-history-sc" width="475" height="174" /></a></dt>
<dd class="wp-caption-dd">Screenshot of a Member&#8217;s Purchase History</dd>
</dl>
<p>So, ideally you will create a page called &#8220;Purchase History&#8221; and place the above shortcode on the page then protect the page from the &#8220;General Protection&#8221;. Now, give the other membership levels access to this page which will allow the logged in members to view their purchase history.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-membership/how-to-display-a-members-purchase-history-158/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: www.tipsandtricks-hq.com @ 2010-09-02 15:24:41 -->