Statistics: Posted by hearwritenow — June 30th, 2010, 9:56 pm
1. What would be the best way to set this up? If I use the membership levels, then 2010 members will have access to 2007 and 2003 material. Which I can live with, but it seems "messy". It's really only the bridging course that will be an upgrade membership. Am I missing a simpler option?
2. I want to use the Content Dripping option to deliver a new module each week. There are 24 modules spanning a 6-month course. So far I have created one page for each module (which simply contains two links to a .pdf and .avi). Is it necessary to duplicate this for each version of Word? Or is there a way to filter out the links to the "wrong" versions of Word based on the member's settings and use the same page to deliver a different set of links according to who has landed on the page?
<?php if (is_user_logged_in() && current_user_can("access_s2member_level1")){ ?>
Some premium content for all Level 1 Members.
<?php if (current_user_can("access_s2member_ccap_2010")){ ?>
Display links for 2010 as well.
<?php } ?>
<?php if (current_user_can("access_s2member_ccap_2007")){ ?>
Display 2007 as well.
<?php } ?>
<?php } else { ?>
Some public content.
<?php } ?>
3. I started creating a PayPal button but there doesn't seem to be an option for what I want to do, which is charge a monthly fee for 6 months and then stop charging the member but allow them continued access to the members' area. I.e., after 6 payments they have now fully paid for the course and can still access the material at any time.
<input type="hidden" name="srt" value="6" />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="company@example.com" />
<input type="hidden" name="cmd" value="_xclick-subscriptions" />
<!-- Instant Payment Notification & Return Page Details -->
<input type="hidden" name="notify_url" value="http://www.example.com/?s2member_paypal_notify=1" />
<input type="hidden" name="cancel_return" value="http://www.example.com" />
<input type="hidden" name="return" value="http://www.example.com/?s2member_paypal_return=1" />
<input type="hidden" name="rm" value="2" />
<!-- Configures All Of The Checkout Fields -->
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="custom" value="www.example.com" />
<input type="hidden" name="currency_code" value="USD" />
<input type="hidden" name="page_style" value="paypal" />
<input type="hidden" name="item_name" value="$24.95/mo, for six months." />
<input type="hidden" name="item_number" value="1" />
<!-- Customizes Prices, Payments & Billing Cycle -->
<input type="hidden" name="src" value="1" />
<input type="hidden" name="sra" value="1" />
<input type="hidden" name="srt" value="6" />
<input type="hidden" name="a3" value="24.95" />
<input type="hidden" name="p3" value="1" />
<input type="hidden" name="t3" value="M" />
<!-- Displays The PayPal® Image Button -->
<input type="image" alt="PayPal®" style="border:0;" src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif" />
</form>
Statistics: Posted by Jason Caldwell — June 30th, 2010, 5:28 pm
Statistics: Posted by hearwritenow — June 29th, 2010, 8:49 pm