Other Platforms

Install tokwork in Wix, Squarespace, Framer, and more.

Install tokwork in Other Platforms

Installation guides for popular website builders and platforms.

Wix

Method 1: Using Wix Editor

  1. Open your Wix site editor
  2. Click Settings in the left panel
  3. Scroll down and click Custom Code
  4. Click + Add Custom Code
  5. Paste the tokwork script:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Set Place Code in: Body - end
  2. Set Load code on: All Pages
  3. Click Apply
  4. Publish your site

Method 2: Using Wix Velo

If you're using Wix Velo (formerly Corvid):

// Add to your site's code
$w.onReady(function() {
  const script = document.createElement('script');
  script.src = 'https://js.tokwork.com/loader.js';
  script.async = true;
  script.setAttribute('data-website-id', 'YOUR_WEBSITE_ID');
  script.setAttribute('data-website-domain', 'yourdomain.com');
  document.body.appendChild(script);
});

Squarespace

Installation

  1. Go to SettingsAdvancedCode Injection
  2. Paste the tokwork script in Footer:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Click Save
  2. Your site will update automatically

Page-Specific Installation

To add to a specific page:

  1. Go to the page in edit mode
  2. Click Settings (gear icon)
  3. Click Advanced
  4. Scroll to Page Header Code Injection
  5. Paste the tokwork script
  6. Click Save

Framer

Installation

  1. Click on your project name in the top left
  2. Click Settings
  3. Scroll to Custom Code
  4. Paste in End of <body> tag:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Publish your site
Note: Custom code is only available on Framer's paid plans.

Ghost CMS

Installation

  1. Go to SettingsCode injection
  2. Paste the tokwork script in Site Footer:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Click Save

Theme-Level Installation

For more control, edit your Ghost theme:

  1. Download your theme
  2. Open default.hbs
  3. Add the script before </body>
  4. Re-upload your theme

Carrd

Installation

  1. Open your Carrd site for editing
  2. Click Settings (gear icon)
  3. Scroll to Custom Code
  4. Add to Footer Code:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Click Save
  2. Publish your site
Note: Custom code requires Carrd Pro.

Notion

Unfortunately, Notion doesn't support custom JavaScript. Consider:

  • Using Super.so (Notion to website converter with custom code support)
  • Using Popsy (another Notion to website tool)
  • Exporting to another platform

Google Sites

Google Sites doesn't support custom JavaScript for security reasons. Unfortunately, tokwork cannot be installed on Google Sites directly.


Bubble.io

Installation

  1. Go to SettingsSEO / metatags
  2. Scroll to Script/meta tags in header
  3. Add the tokwork script:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Deploy your app

Kajabi

Installation

  1. Go to SettingsTracking Code
  2. Paste the tokwork script in the Footer section:
<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>
  1. Click Save

General HTML Injection Method

Most platforms support custom HTML/JavaScript injection. Look for:

  • Custom Code settings
  • Code Injection or HTML Injection
  • Footer Scripts or Header Scripts
  • Advanced SettingsCustom Code

Then add the tokwork script:

<script async src="https://js.tokwork.com/loader.js" 
  data-website-id="YOUR_WEBSITE_ID" 
  data-website-domain="yourdomain.com">
</script>

Platform Not Listed?

If your platform isn't listed:

  1. Check if it supports custom JavaScript
  2. Look for "Custom Code" or "Code Injection" settings
  3. Add the tokwork script in the footer/body section
  4. Contact our support for help

Troubleshooting

Next Steps