one time subscription

boofoot
Contributor
Contributor

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

Login to Me Too
1 ACCEPTED SOLUTION

Accepted Solutions
Solved

skier
Advisor
Advisor

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

View solution in original post

Login to Me Too
2 REPLIES 2
Solved

skier
Advisor
Advisor

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

Login to Me Too

boofoot
Contributor
Contributor
thanks for your help 🙂
Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.