About Tabit Page
How do I make an "About Tabit" page?
Incorporating a page dedicated to Tabit will provide valuable insights to your customers regarding the functionalities and advantages of using Tabit for payment processing. We offer a user-friendly HTML template designed specifically for integration into your website. Simply choose your preferred platform and utilize the provided code snippets to seamlessly add the Tabit page to your site!
To preview the layout and content of the page, click here
Adding the page to your website
To set up the page on your website, please work with your web developer and/or follow the steps below.
- Create a new page in your theme
- Copy and paste the code into your website's page
- Insert your unique Tabit pre-qualify and payment links inside the parenthesis, replacing https;//connect.tabit.ai
- Click save and/or publish!
Code Snippet
Insert the following code into your HTML file:
<div id="how-tabit-works"></div>
<script>
const config = {
qualify_link: "https://connect.tabit.ai/",
pay_link: "https://connect.tabit.ai/",
}
const node = document.getElementById('how-tabit-works');
const iframe = document.createElement('iframe');
iframe.src = 'https://tabit.ai/how-tabit-works/';
iframe.height = '3400px';
iframe.width = '100%';
iframe.style.border = 'none';
iframe.onload = function () {
iframe.contentWindow.postMessage({
key: "how_tabit_config", config
}, "*")
};
node.appendChild(iframe);
</script>