Tiquo
API and AuthenticationHosted Package

Installation

Install the Tiquo Hosted Package on Webflow and other website builders that support custom code

Installation

1. Enable Website SDK

In Tiquo, go to Settings > Website SDK.

Enable Website SDK and copy your public key.

2. Add your website domain

Add the website domain where the script will run.

Examples:

  • Entering https://www.example.com/pricing is saved as example.com
  • Entering www.example.com is saved as example.com
  • Entering shop.example.com is saved as shop.example.com

If you enter the root domain, Tiquo treats the root domain and www version as the same website. Other subdomains are treated separately.

3. Paste the hosted script

Paste this before the closing </body> tag, or in the custom-code area your website builder provides.

The Hosted Package is compatible with Webflow and other website builders, including Wix, Squarespace, Framer, Shopify, and any builder that lets you add custom code.

<script
  src="https://tiquo.app/tiquo/v1/tiquo.js?v=1.1.15"
  data-tiquo-public-key="pk_dom_your_public_key"
  data-tiquo-consent="anonymous"
  async
></script>

Replace pk_dom_your_public_key with your Website SDK public key.

Use the versioned ?v=1.1.15 script URL shown above. This ensures Webflow and other site builders load the current Hosted Package behavior, including passwordless form handling for hidden OTP steps, passwordless loading states, Webflow form-submit interception, automatic hiding of login forms for signed-in customers, logout buttons, wallet card links, Created and First Active customer fields, formatted order fields, booking range rendering, formatted booking fields, and hidden list templates.

Webflow notes

Add the script in either:

  • Project Settings > Custom Code > Footer Code
  • Page Settings > Before </body> tag

Publish the site after saving.

Check that it installed correctly

Open the website in a browser and run this in the console:

window.Tiquo.version

If the script loaded, it returns the Hosted Package version.

To send a test event:

window.Tiquo.track("test_event", {
  eventName: "Hosted Package Test"
});

If the domain and public key are configured correctly, the event appears in Tiquo website analytics.

Sur cette page