Search

Index

Revindex Storefront

How to give first month recurring free

Last updated on 2021-06-16 3 mins. to read

If you sell monthly subscriptions, a good marketing idea is to give the first month free to encourage users to sign up. The customer must always make a first purchase going through the Web checkout process in order for the Storefront to capture any billing and payment information necessary to charge the customer for future occurrences. There are two options to configure your first free product on checkout. 

Using promotion to give first month free

One easy way is to create a promotion rule that gives the discount based on the origin.

  1. Under Marketing > Promotions menu, click Add new.
  2. Give your promotion a name (e.g. "Free first month")
  3. Under the Promotion tab, select "Sales order detail" as your promotion type.
  4. Choose "Custom rule" for your promotion rule.
  5. Enter the following rule to check the order is originating from a Web checkout (origin = 1) and not system recurring. You may need to adjust the rule if you want to put more conditions such as limiting the discount to only a specific variant, etc.

    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
      <xsl:template match="/">
        <out>
          <discountAmount>
            <xsl:if test="/in/salesOrder/origin = 1">
              <xsl:value-of select="-1 * /in/this/salesOrderDetail/price * /in/this/salesOrderDetail/quantity"/>
            </xsl:if>
          </discountAmount>
        </out>
      </xsl:template>
    </xsl:transform>

Using required product to give first month free

An alternative approach is to create a different secondary product (you can call it "First Trial" or give it any creative name you like). This simple product has a variant (non-recurring) that requires your actual subscription product. The customer will actually buy your "First Trial" product and the Storefront will automatically set up the future recurring product. You can hide the subscription product since the customer won't be interacting with it.

  1. Under Catalog > Products, add a new product.
  2. Give it a name like "Free Trial" and Save.
  3. Edit the variant of this product. Notice this variant has a zero dollar price. 
  4. Under the Required tab, add your actual subscription product to it.
  5. Uncheck the Published and set the Defer date to the first occurrence to happen (e.g. 1 month).
  6. Save.

 

In both cases, you can choose to collect their credit card information during checkout, but the customer won't get charged since the amount is zero. Of course, if they don't cancel by the end of the month, their credit card will be charged for the renewal going forward. If you don't want to take their credit card information, you can adjust the Availability rule for your payment methods to allow the special "None" payment method when the total amount is zero, and likewise enable the "Credit Card" payment method if the reverse condition is true. 




Comments

Adam Feb 08, 2020 12:27 AM
I want to force customer to provide CC information during checkout for free trial (and then automatic payment after 30 days).  Where is this done?  I cant seem to find it, and "No Payment Required" still shows.
Adam Feb 08, 2020 12:31 AM
Figure it out - nevermind all!

Powered by Revindex Wiki