- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hi
anyone can please help me how to set a subscription as one time payment? I have a site that caters video tutorials I want that my clients to pay $77 for that videos but they will only pay it once then they will not accept billings everymonth to pay the $77 this means that they can only pay it once then they have a lifetime subscription on the videos
Please help me..
Thanks
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Check out the Tips and example here. Note, you would just skip the part for including the Free Trial.
Your code will end up looking something like the example below:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <input type="hidden" name="business" value="youremailaddress@yourdomain.com"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="item_name" value="Widget Tutorial Services"> <input type="hidden" name="item_number" value="WS-1001"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="rm" value="1"> <input type="hidden" name="return" value="http://www.yoursite.com/success.html"> <input type="hidden" name="cancel_return" value="http://www.yoursite.com/cancel.html"> <input type="hidden" name="a3" value="77.00"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="src" value="0"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="t3" value="D"> <input type="hidden" name="sra" value="1"> <input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHosted"> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form>
Regards,
skier
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Check out the Tips and example here. Note, you would just skip the part for including the Free Trial.
Your code will end up looking something like the example below:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <input type="hidden" name="business" value="youremailaddress@yourdomain.com"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="item_name" value="Widget Tutorial Services"> <input type="hidden" name="item_number" value="WS-1001"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="rm" value="1"> <input type="hidden" name="return" value="http://www.yoursite.com/success.html"> <input type="hidden" name="cancel_return" value="http://www.yoursite.com/cancel.html"> <input type="hidden" name="a3" value="77.00"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="src" value="0"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="t3" value="D"> <input type="hidden" name="sra" value="1"> <input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHosted"> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form>
Regards,
skier
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Haven't Found your Answer?
It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.