D DepositFix Help Center
Browse all articles

Time Based Pricing (Subscriptions)

DepositFix offers flexible ways and options to process the payments of your customers.

  1. Specific Date Charge
  2. Delayed Charge

Specific Date Charge

You can set your form to charge on a specific date. This will store the credit card information in Stripe but the customer will not be charged until a specific date. 

This is very beneficial if you want to align transactions and record all your payment transactions on the same day.

To set up a specific charge date, you will need to the add the following code to your embed code:

settings: { billingDate: ‘Your_Date’ },

Where Your_Date is the date you want the charge to happen at.

Full sample code:

After the first payment, regular subscription charging will proceed based on the frequency of set up in Stripe. 

Delayed Charge

This feature allows you to You can postpone the charge on your customer’s card using this feature based on the desired number of days.  

Important: An easier way to set up trial days charge is by using trial days discount codes.

This is commonly used for free trial periods and for products or services typically paid after consumption. 

To set up a number of trial days, you will need to the add the following code to your embed code:

settings: { trialDays: ‘Your_Number’ },

Where Your_Number is the number of days you want to add.

Full sample code:

After the first payment, regular subscription charging will proceed based on the frequency of set up in Stripe.