by drawingsecretsrevealed » October 24th, 2011, 12:09 pm
I'm having a hard time wrapping my brain around doing drip content for two different pricing options.
Option 1: $97 for unlimited access to all 12 lessons and exclusive members-only videos for a 4-month subscription
Option 2: $27/mo for 12 lessons and members-only videos to be released weekly
I already have the weekly drip content PHP script for the 12 lessons, but I need to add that in to the members-only videos.
My head explodes when I try to figure out how to have conditional drip content - for instance, I wouldn't need any drip content PHP script for the $97 members - they would get immediate and universal access. Currently I have the following PHP scrip for the weekly lessons:
(at the top of the page)
<?php if(S2MEMBER_CURRENT_USER_PAID_REGISTRATION_DAYS >= 63){ ?>
(at the bottom of the page)
<?php } else { ?>
This lesson will be available for viewing one week after the previous lesson became available, to give you the chance to watch the previous lessons and practice the concepts presented there.
<a href="http://drawingsecretsrevealed.com/wp-content/uploads/2011/06/Lesson-10-Video-Title-with-Images.png"><img class="aligncenter size-medium wp-image-930" title="Lesson 10 Video Title with Images" src="http://drawingsecretsrevealed.com/wp-content/uploads/2011/06/Lesson-10-Video-Title-with-Images-300x168.png" alt="" width="300" height="168" />[/b]</a>
<?php } ?>
(The "ELSE" PHP script has the message with an image of the lesson thumbnail, so they know they're on the right page and there wasn't just an error on the page.)
So my question is do I just leave this PHP script in place, or do I need to specify WHICH member (the $27/mo member, not the $97 member) it applies to?