Community Support Forums — WordPress® ( Users Helping Users ) — 2011-09-03T22:33:37-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=14807 2011-09-03T22:33:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33949#p33949 <![CDATA[Re: drip content vs. straight purchase]]> image attribute with the URL of the image you'd like to use. E.g. image="http://example.com/images/my-cooler-button.png"

Statistics: Posted by Cristián Lávaque — September 3rd, 2011, 10:33 pm


]]>
2011-09-03T21:22:39-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33938#p33938 <![CDATA[Re: drip content vs. straight purchase]]> Statistics: Posted by drawingsecretsrevealed — September 3rd, 2011, 9:22 pm


]]>
2011-09-02T23:14:18-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33841#p33841 <![CDATA[Re: drip content vs. straight purchase]]>

Statistics: Posted by Cristián Lávaque — September 2nd, 2011, 11:14 pm


]]>
2011-09-02T22:50:59-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33835#p33835 <![CDATA[Re: drip content vs. straight purchase]]> Statistics: Posted by cassel — September 2nd, 2011, 10:50 pm


]]>
2011-09-02T22:42:21-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33830#p33830 <![CDATA[Re: drip content vs. straight purchase]]>
drawingsecretsrevealed wrote:
This does help, enormously. One more question: How would I generate the correct PayPal buttons? Would I generate a Level 1 button for monthly members of $27, label it on the sales page as "monthly membership of $27/mo", and then generate a Level 2 button for flat-rate members of $97, and label THAT on the sales page as "immediate access to all lessons"?


Correct. :)

Cassel, do you mean customizing the button's image for each too? That is certainly a possibility if he wanted to do that. WP Admin -> s2Member -> PayPal Buttons -> Shortcode Attributes -> image

Statistics: Posted by Cristián Lávaque — September 2nd, 2011, 10:42 pm


]]>
2011-09-02T16:06:03-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33776#p33776 <![CDATA[Re: drip content vs. straight purchase]]>

Statistics: Posted by cassel — September 2nd, 2011, 4:06 pm


]]>
2011-09-02T12:15:30-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33750#p33750 <![CDATA[Re: drip content vs. straight purchase]]> Statistics: Posted by drawingsecretsrevealed — September 2nd, 2011, 12:15 pm


]]>
2011-09-01T22:28:28-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33710#p33710 <![CDATA[Re: drip content vs. straight purchase]]>

Protect the pages at Level 1, this will let Level 1 and 2 users to access that page. s2Member -> Restriction Options -> Page

Then in the pages you'll have a condition to check if he's at Level 1 and for how long to determine if he gets the new video or a message telling him it's not available yet, or show him the video if Level 2.

Check the documentation for conditionals and content dripping. WP Admin -> s2Member -> API / Scripting -> Advanced/PHP Conditionals and s2Member Content Dripping

Code:
<?php
if 
(current_user_is('s2member_level1') && S2MEMBER_CURRENT_USER_PAID_REGISTRATION_DAYS < 30) {
    echo 'This video is not available to you yet, check back in ', (30 - S2MEMBER_CURRENT_USER_PAID_REGISTRATION_DAYS) , ' days.';
}
 else {
    echo 'Here is your video.';
}
?>


I hope this helps. :)

Statistics: Posted by Cristián Lávaque — September 1st, 2011, 10:28 pm


]]>
2011-09-01T10:46:51-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14807&p=33630#p33630 <![CDATA[drip content vs. straight purchase]]>
I would like to offer my 12-video course as a monthly membership of $27/mo. with the videos being drip-content using s2Member's PHP script for dripping content as Level 1 membership. I would also like to offer a Level 2 membership of a flat price of $97 for immediate access to the entire course, without dripping content. Is this possible? Is it possible to have, say, Lesson #1 (a single WordPress page) recognize if someone is at Level 1 membership and be released according to the weekly drip schedule, or recognize if someone is at Level 2 membership and be immediately open to them. Does this make sense?

Can you have different levels of membership be different TYPES of membership? Like a monthly membership for Level 1 and a one-time membership for Level 2?

Statistics: Posted by drawingsecretsrevealed — September 1st, 2011, 10:46 am


]]>