Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to discount additional recurring payments?

I want to charge $47/month for the first month. Then only $37 for every additional month. Essentially, I want to discount the recurring payments if they stay with me.

How can I do this in PayPal buttons?

like image 272
User Avatar asked Sep 09 '16 18:09

User


People also ask

What is a recurring discount?

You will need to renew your services depending upon your billing cycle, as nearly all our products and services are billed on monthly, quarterly, semi-annually, annually, biennially, triennially and so on basis. The discounts that are applicable on these renewals are known as recurring discounts.

Can I use a 100% off coupon in checkout stripe?

When using the Stripe Payments Plugin coupon codes can be created where the discount amount is 100%. This means that the customer will not need to pay for the product.

How do I add a discount on stripe?

In the Dashboard on the Create a coupon page, click the Use customer-facing coupon codes button. Enter a code. This is the code that a customer enters at checkout to redeem the discount. If you don't set a code, Stripe generates one for you.


1 Answers

<form action="https://www.paypal.com/cgi-bin/webscr" method="POST">
    <input type="hidden" name="cmd" value="_xclick-subscriptions">
    <input type="hidden" name="business" value="[email protected]">
    <input type="hidden" name="item_name" value="Subscription description here">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="a1" value="47.00"> <!-- Set this to the price you want to charge them upfront -->
    <input type="hidden" name="p1" value="1"> <!-- Set the length of the trial to 1 interval (t1 will define the interval) -->
    <input type="hidden" name="t1" value="M"> <!-- Set the interval to months -- trial is now one month in length -->
    <input type="hidden" name="a3" value="37.00"> <!-- Amount to charge each month -->
    <input type="hidden" name="p3" value="1">
    <input type="hidden" name="t3" value="M"> <!-- Payments are one month apart -->
    <input type="hidden" name="src" value="1"> <!-- Payments don't automatically stop -->
    <input type="image" alt="PayPal - The safer, easier way to pay online!" src="https://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif">
</form>
like image 97
Matt Cole Avatar answered Sep 30 '22 12:09

Matt Cole