23 Feb 2026

How do I embed my ReadyIntelligence assistant?

See how you can add your AI assistant to different types of websites.

Your global script tag

Replace the src URL with your own:

<script src="https://example.com/your-script.js" defer></script>

WordPress (theme editor)

  1. Log in to WordPress Admin.
  2. Go to Appearance → Theme File Editor and open header.php or footer.php.
  3. Paste the script tag just before </head> (header) or </body> (footer):
    <!-- Just before </body> -->
    <script src="https://example.com/your-script.js" defer></script>
    </body>
    
  4. Save and refresh your site.

Squarespace (Code Injection)

  1. Log in to Squarespace.
  2. Go to Settings → Advanced → Code Injection.
  3. Paste the script tag into either:
    • Header field (loads in <head>), or
    • Footer field (loads before </body>, usually recommended):
    <script src="https://example.com/your-script.js" defer></script>
    
  4. Save and refresh your site.

Wix (Custom Code)

  1. Log in to Wix and open your site dashboard.
  2. Go to Settings → Advanced → Custom Code.
  3. Click “Add Custom Code”.
  4. Paste:
    <script src="https://example.com/your-script.js" defer></script>
    
  5. Set:
    • Add Code to Pages: “All Pages”.
    • Place Code in: “Body – end” (recommended).
  6. Save and publish.

Webflow (Project settings)

  1. Open your project in Webflow.
  2. Go to Project Settings → Custom Code.
  3. In the “Footer Code” box, paste:
    <script src="https://example.com/your-script.js" defer></script>
    
  4. Save changes, then publish your site.

Shopify (theme.liquid)

  1. Log in to Shopify Admin.
  2. Go to Online Store → Themes and click “Edit code” for your active theme.
  3. Open layout/theme.liquid.
  4. Just before </body>, add:
    <!-- Global script just before closing body -->
    <script src="https://example.com/your-script.js" defer></script>
    </body>
    
  5. Save and check a storefront page.

Drupal (theme, all pages)

Example for Drupal 8/9/10/11 using a custom or child theme.

  1. In your theme folder, create or edit yourtheme.libraries.yml and add:
    global-scripts:
      js:
        https://example.com/your-script.js:
          type: external
          attributes:
            defer: true
    
  2. In yourtheme.info.yml, ensure the library loads on every page:
    name: Your Theme
    type: theme
    description: 'Custom theme.'
    core_version_requirement: ^8 || ^9 || ^10 || ^11
    
    libraries:
      - yourtheme/global-scripts
    
  3. Clear Drupal caches (for example, drush cr or via Configuration → Performance).
  4. Reload any page; the script will now be included globally.