<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Get Your Membership Questions Answered</title>
	<atom:link href="http://wishlistproducts.com/get-your-membership-questions-answered/feed/" rel="self" type="application/rss+xml" />
	<link>http://wishlistproducts.com/get-your-membership-questions-answered/</link>
	<description></description>
	<lastBuildDate>Sun, 29 Apr 2012 19:22:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Karry</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4144</link>
		<dc:creator>Karry</dc:creator>
		<pubDate>Fri, 03 Feb 2012 18:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4144</guid>
		<description>CAN&#039;T USE WLM WITH THESIS THEME

I am unable to get WLM to run without getting &quot;Fatal error: Out of memory (allocated 30932992) (tried to allocate 311296 bytes) in /homepages/10/d278160580/htdocs/wellfed/wp-includes/class-simplepie.php on line 4186&quot;

I am using the THESIS theme and if I switch to TwentyOne the error goes away.  But I want to continue using THESIS.

I have reinstalled WLM using binary FTP, multiple times.

I have disabled all Plug-ins except WLM (with THESIS) and I still get the out of memory error.

I have increased the memory limit all the way to 128M but I still get the out of memory error.

The memory usage at 63M shows only 9% utilization, so I really don&#039;t think it&#039;s a memory issue.

Can someone help solve this problem?</description>
		<content:encoded><![CDATA[<p>CAN&#8217;T USE WLM WITH THESIS THEME</p>
<p>I am unable to get WLM to run without getting &#8220;Fatal error: Out of memory (allocated 30932992) (tried to allocate 311296 bytes) in /homepages/10/d278160580/htdocs/wellfed/wp-includes/class-simplepie.php on line 4186&#8243;</p>
<p>I am using the THESIS theme and if I switch to TwentyOne the error goes away.  But I want to continue using THESIS.</p>
<p>I have reinstalled WLM using binary FTP, multiple times.</p>
<p>I have disabled all Plug-ins except WLM (with THESIS) and I still get the out of memory error.</p>
<p>I have increased the memory limit all the way to 128M but I still get the out of memory error.</p>
<p>The memory usage at 63M shows only 9% utilization, so I really don&#8217;t think it&#8217;s a memory issue.</p>
<p>Can someone help solve this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4142</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 01 Feb 2012 01:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4142</guid>
		<description>Hi,

I&#039;m posting this because I think it can be very useful and I struggled a very long time to achieve this. 

If you want to compare the membership level of a user with the membership level of a post, without using the [private] tags (which suck!) you can also code it in a template using the following technique: 

You need two array&#039;s, that of the user&#039;s memberships access and that of the post&#039; membership requirement to access it.

You can get the user memberships in a variable by this line:
$userlevels = WLMAPI::GetUserLevels();

You can get the memberships required to read a certain post using this line:
$postlevels = WLMAPI::GetPostLevels($post-&gt;ID);

It is important that you use the GetPostLevel inside the loop.

Then compare the two array variables with each other by checking if they have a match:

$hasAccess = array_intersect_assoc($postlevels, $userlevels);

Now if a membership of a user would match with a membership connected to the post, $hasAccess would have an array with that membership. If not, $hasAccess would contain an empty array. 

To check if the array is empty, use the following line:

if (!empty($hasAccess)) { do stuff here }

With this, &quot;stuff&quot; will be done if there is a match between the membership of the user and a membership that gives access to a post.

Good luck.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m posting this because I think it can be very useful and I struggled a very long time to achieve this. </p>
<p>If you want to compare the membership level of a user with the membership level of a post, without using the [private] tags (which suck!) you can also code it in a template using the following technique: </p>
<p>You need two array&#8217;s, that of the user&#8217;s memberships access and that of the post&#8217; membership requirement to access it.</p>
<p>You can get the user memberships in a variable by this line:<br />
$userlevels = WLMAPI::GetUserLevels();</p>
<p>You can get the memberships required to read a certain post using this line:<br />
$postlevels = WLMAPI::GetPostLevels($post-&gt;ID);</p>
<p>It is important that you use the GetPostLevel inside the loop.</p>
<p>Then compare the two array variables with each other by checking if they have a match:</p>
<p>$hasAccess = array_intersect_assoc($postlevels, $userlevels);</p>
<p>Now if a membership of a user would match with a membership connected to the post, $hasAccess would have an array with that membership. If not, $hasAccess would contain an empty array. </p>
<p>To check if the array is empty, use the following line:</p>
<p>if (!empty($hasAccess)) { do stuff here }</p>
<p>With this, &#8220;stuff&#8221; will be done if there is a match between the membership of the user and a membership that gives access to a post.</p>
<p>Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WPWL Team</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4134</link>
		<dc:creator>WPWL Team</dc:creator>
		<pubDate>Sat, 28 Jan 2012 04:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4134</guid>
		<description>@Kathie - This is definitely NOT a WishList Member issue because WLM does NOT collect any credit card info to begin with.  That&#039;s all done on the shopping cart/merchant side.

That info isn&#039;t passed along to WLM nor is it collected or stored in WLM.

So it&#039;s something you&#039;ll want to clear up with your shopping cart or merchant.

Take care.</description>
		<content:encoded><![CDATA[<p>@Kathie &#8211; This is definitely NOT a WishList Member issue because WLM does NOT collect any credit card info to begin with.  That&#8217;s all done on the shopping cart/merchant side.</p>
<p>That info isn&#8217;t passed along to WLM nor is it collected or stored in WLM.</p>
<p>So it&#8217;s something you&#8217;ll want to clear up with your shopping cart or merchant.</p>
<p>Take care.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kathie M Thomas</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4133</link>
		<dc:creator>Kathie M Thomas</dc:creator>
		<pubDate>Sat, 28 Jan 2012 01:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4133</guid>
		<description>I&#039;m having problems with credit card expiry dates not showing beyond 2013. After 6 months of asking my merchant facility to fix the problem they&#039;ve now told me it&#039;s the Wishlist Plugin that&#039;s the problem. I couldn&#039;t see how that is but thought I better come here and ask anyway.

http://www.vadirectory.net/ProductDetails.php?ProductID=91

I don&#039;t know how to get the expiry dates to go further than 2013 and it means people with cards of expiry dates of 2014 and beyond can&#039;t place payments with me. Can you please advise?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having problems with credit card expiry dates not showing beyond 2013. After 6 months of asking my merchant facility to fix the problem they&#8217;ve now told me it&#8217;s the Wishlist Plugin that&#8217;s the problem. I couldn&#8217;t see how that is but thought I better come here and ask anyway.</p>
<p><a href="http://www.vadirectory.net/ProductDetails.php?ProductID=91" rel="nofollow">http://www.vadirectory.net/ProductDetails.php?ProductID=91</a></p>
<p>I don&#8217;t know how to get the expiry dates to go further than 2013 and it means people with cards of expiry dates of 2014 and beyond can&#8217;t place payments with me. Can you please advise?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WPWL Team</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4023</link>
		<dc:creator>WPWL Team</dc:creator>
		<pubDate>Wed, 28 Dec 2011 21:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4023</guid>
		<description>@Greg - A real quick and easy way to implement this would be to wrap your download in a &quot;private tag&quot; for members only.

This makes it so that only your members would be able to see the download link.

For example, it would look like this:

--
Content, content, content.  [ismember] Download Link [/ismember].  Content, content, content.
--

This way, only members logged in would see the download link.

Hopefully that helps.</description>
		<content:encoded><![CDATA[<p>@Greg &#8211; A real quick and easy way to implement this would be to wrap your download in a &#8220;private tag&#8221; for members only.</p>
<p>This makes it so that only your members would be able to see the download link.</p>
<p>For example, it would look like this:</p>
<p>&#8211;<br />
Content, content, content.  [ismember] Download Link [/ismember].  Content, content, content.<br />
&#8211;</p>
<p>This way, only members logged in would see the download link.</p>
<p>Hopefully that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-4020</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Wed, 28 Dec 2011 16:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-4020</guid>
		<description>Just wondering if anyone has used this plugin to create an online library.  I&#039;m hoping to use it on our website so members and non-members can search everything available in the library (all free to download) but only members can actually access the download link.  

Any examples or thoughts about the best way to implement this would be much appreciated. 

Greg</description>
		<content:encoded><![CDATA[<p>Just wondering if anyone has used this plugin to create an online library.  I&#8217;m hoping to use it on our website so members and non-members can search everything available in the library (all free to download) but only members can actually access the download link.  </p>
<p>Any examples or thoughts about the best way to implement this would be much appreciated. </p>
<p>Greg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WPWL Team</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-3675</link>
		<dc:creator>WPWL Team</dc:creator>
		<pubDate>Tue, 06 Dec 2011 16:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-3675</guid>
		<description>@Joop - You may want to look into using the &quot;Private Tags&quot; of WishList Member for this.  These allow you to display (or not display) certain text, images or video (basically whatever is between the private tags).

So in your case, you could display the appropriate &quot;subscription links&quot; based on the membership level they belong to.

Hopefully that helps :)</description>
		<content:encoded><![CDATA[<p>@Joop &#8211; You may want to look into using the &#8220;Private Tags&#8221; of WishList Member for this.  These allow you to display (or not display) certain text, images or video (basically whatever is between the private tags).</p>
<p>So in your case, you could display the appropriate &#8220;subscription links&#8221; based on the membership level they belong to.</p>
<p>Hopefully that helps <img src='http://wishlistproducts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joop Overhand</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-3673</link>
		<dc:creator>Joop Overhand</dc:creator>
		<pubDate>Tue, 06 Dec 2011 13:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-3673</guid>
		<description>Hi,

In addition to the above: It is no problem for existing members to subscribe to a second or third membership.

My question: Is it possible to present only 1 or 2 or 3 available membeship types to this existing user?

In other words: We don&#039;t want to present the whole list of purchasable memberships, but only a few. This way, we can lead our customers to memberships of their (proven) interest. The other membership types would then be to much of a choice.

Is it possible to present such a &#039;filter&#039;?

Thanks in advance for your reply!


kind regards,
Joop Overhand</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>In addition to the above: It is no problem for existing members to subscribe to a second or third membership.</p>
<p>My question: Is it possible to present only 1 or 2 or 3 available membeship types to this existing user?</p>
<p>In other words: We don&#8217;t want to present the whole list of purchasable memberships, but only a few. This way, we can lead our customers to memberships of their (proven) interest. The other membership types would then be to much of a choice.</p>
<p>Is it possible to present such a &#8216;filter&#8217;?</p>
<p>Thanks in advance for your reply!</p>
<p>kind regards,<br />
Joop Overhand</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damion</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-3470</link>
		<dc:creator>Damion</dc:creator>
		<pubDate>Sat, 05 Nov 2011 22:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-3470</guid>
		<description>HI, 

I do not understand how to bring subscribers to the custom registration form after they pay using paypal. 

Damion</description>
		<content:encoded><![CDATA[<p>HI, </p>
<p>I do not understand how to bring subscribers to the custom registration form after they pay using paypal. </p>
<p>Damion</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Anton Diaz</title>
		<link>http://wishlistproducts.com/get-your-membership-questions-answered/comment-page-4/#comment-3336</link>
		<dc:creator>Richard Anton Diaz</dc:creator>
		<pubDate>Thu, 20 Oct 2011 14:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://wishlistproducts.com/?p=174#comment-3336</guid>
		<description>Though I purchased Wishlist quite some time back, I am very new as to how to set it up and get going. What tutorials can I begin to look so that I can start from the very beginning and learn A-Z how to run Wishlist??

Also is there a tutor I can hire to help me?

thanks</description>
		<content:encoded><![CDATA[<p>Though I purchased Wishlist quite some time back, I am very new as to how to set it up and get going. What tutorials can I begin to look so that I can start from the very beginning and learn A-Z how to run Wishlist??</p>
<p>Also is there a tutor I can hire to help me?</p>
<p>thanks</p>
]]></content:encoded>
	</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
Database Caching 8/22 queries in 0.019 seconds using memcached
Object Caching 576/586 objects using memcached

Served from: wishlistproducts.com @ 2012-05-21 02:55:17 -->
