Community Support Forums — WordPress® ( Users Helping Users ) — 2010-08-17T20:32:49-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=583 2010-08-17T20:32:49-05:00 http://www.primothemes.com/forums/viewtopic.php?t=583&p=2426#p2426 <![CDATA[Re: Question about s2member pro user profile]]>
So let's break this down into each version of s2Member.

1. s2Member ( the free version )
This uses Standard PayPal integration, and as such, a recurring "Subscription" is always tied to a PayPal account holder. So in this case, your Customer would always have full access to the financial details of their Membership with your site; through their PayPal account. They can see the renewal dates, last billing date, and even have the ability to cancel their own Subscription if they need to.

2. s2Member Pro ( the paid upgrade )
This version comes equipped with PayPal Pro integration, which dramatically improves the functionality and flexibility offered by the s2Member plugin. As of s2Member Pro v1.2, there are no additional built-in API Constants, or a Profile panel that would supply billing specifics; beyond what the free version already provides. That being said, with Pro integration, you DO have full access to API functions that can be used to pull everything that's available from PayPal.

Here is a quick code sample:
Code:
$paypal["METHOD"] = "GetRecurringPaymentsProfileDetails";
$paypal["PROFILEID"] = get_user_option ("s2member_subscr_id");
$everything = ws_plugin__s2member_pro_paypal_response ($paypal);
print_r($everything); // gives you EVERYTHING; a full set of details.

This would include everything documented in the PayPal Pro API, which is also included with the s2Member Pro distribution. There are MANY other API methods that can called upon as well. In other words, in addition to all of the built-in tools provided by s2Member, there is full access to the PayPal Pro API as well; which can be extended well beyond the basics. [ full documentation ]

Statistics: Posted by Jason Caldwell — August 17th, 2010, 8:32 pm


]]>
2010-08-17T17:56:42-05:00 http://www.primothemes.com/forums/viewtopic.php?t=583&p=2416#p2416 <![CDATA[Question about s2member pro user profile]]>
Does s2member Pro allow this type of subscription management? I've read about the user profile page that comes with pro, but haven't been able to find much detail on exactly what it shows.

Thanks for your time.

Statistics: Posted by zachd — August 17th, 2010, 5:56 pm


]]>