The XPay SDK allows you to render multiple payment methods dynamically based on store configurations.
To render all available payment methods, simply load the SDK without specifying payment methods. If the store has both card and JazzCash configured, both will be displayed. If JazzCash is not configured, only the card payment option will be available.
Currently, the XPay SDK supports Card and JazzCash payment methods. By default, both methods render within the same element with tabs. However, if you want to render them separately, follow the steps below.
paymentMethods: ["card"]
for the card payment element.paymentMethods: ["jazzcash"]
for the JazzCash payment element.paymentMethods: ["card", "jazzcash"]
, they will not render separately but instead be combined into the same element with tabs.<aside> 💡
You need to use the V4 SDK version.
Stage Env: https://js.xstak.com/v4/xpay-stage.js
React NPM Package: "@xstak/xpay-element-stage-v4": "^1.0.0"
The URL for the live environment will be added soon.
</aside>
index.html
file.// Card Payment Method
const cardElement = new Xpay(
'your_store_public_key',
'your_account_id',
'your_store_hmac'
);
const cardOptions = {
override: true,
paymentMethods: ['card'],
fields: {
creditCard: {
placeholder: '1234 1234 1234 1234',
label: 'Enter your credit card',
},
exp: {
placeholder: 'Exp. Date',
},
cvc: {
placeholder: 'CVC',
label: 'CVC',
},
name: { required: true }, // default value: false
email: { required: true }, // default value: false
},
style: {
'.input': {},
'.invalid': {},
'.label': {
'font-size': '',
color: '',
},
':focus': {},
'.input:focus': {
'box-shadow': '',
'border-color': '',
},
':hover': { 'box-shadow': '', 'border-color': '' },
'::placeholder': { 'font-size': '', color: '' },
'::selection': { 'box-shadow': '' },
},
};
const cardApp = cardElement.element('#card-form', cardOptions);
// JazzCash Payment Method
const walletElement = new Xpay(
'your_store_public_key',
'your_account_id',
'your_store_hmac'
);
const walletOptions = {
override: true,
paymentMethods: ['jazzcash'],
fields: {
mobileNumber: {
placeholder: 'Enter your mobile number',
label: 'Mobile Number',
},
cnic: {
placeholder: 'cnic number',
label: 'Cnic Number',
},
},
style: {
'.input': {},
'.invalid': {},
'.label': {
'font-size': '',
color: '',
},
':focus': {},
'.input:focus': {
'box-shadow': '',
'border-color': '',
},
':hover': { 'box-shadow': '', 'border-color': '' },
'::placeholder': { 'font-size': '', color: '' },
'::selection': { 'box-shadow': '' },
},
};
const walletApp = walletElement.element('#jazzcash-form', walletOptions);