Separate Credit Card Fields

DepositFix implements the default credit card field display from Stripe, which is a single field with three parts (Card No., Expiry date, and CVC).

 
 

In some cases, you may want to customize that further and show separate fields for the card number, expiry date, and CVC. You can do that by adding the following line of code to your embed code:

 
  settings: {
               stripeSplitElements: true
            }
 

This will display separate payment fields.

 
 

Full sample code:

 
<script src="https://widgets-test.depositfix.com/v1/app.min.js"></script>
<script type='text/javascript' id='df-script'>
  DepositFixForm.init({
    formId: 'dff75fcd-8dbb-4254-99c7-d8591bc5c8f2',
    portalId: '4802805',
    settings: {
      stripeSplitElements: true
    }
  });
</script>
 
Did this answer your question?
😞
😐
🤩