How do I embed my ReadyIntelligence assistant?
Your global script tag
Replace the src URL with your own:
<script src="https://example.com/your-script.js" defer></script>
WordPress (theme editor)
- Log in to WordPress Admin.
- Go to Appearance → Theme File Editor and open
header.phporfooter.php. - 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> - Save and refresh your site.
Squarespace (Code Injection)
- Log in to Squarespace.
- Go to Settings → Advanced → Code Injection.
- 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> - Header field (loads in
- Save and refresh your site.
Wix (Custom Code)
- Log in to Wix and open your site dashboard.
- Go to Settings → Advanced → Custom Code.
- Click “Add Custom Code”.
- Paste:
<script src="https://example.com/your-script.js" defer></script> - Set:
- Add Code to Pages: “All Pages”.
- Place Code in: “Body – end” (recommended).
- Save and publish.
Webflow (Project settings)
- Open your project in Webflow.
- Go to Project Settings → Custom Code.
- In the “Footer Code” box, paste:
<script src="https://example.com/your-script.js" defer></script> - Save changes, then publish your site.
Shopify (theme.liquid)
- Log in to Shopify Admin.
- Go to Online Store → Themes and click “Edit code” for your active theme.
- Open
layout/theme.liquid. - Just before
</body>, add:<!-- Global script just before closing body --> <script src="https://example.com/your-script.js" defer></script> </body> - Save and check a storefront page.
Drupal (theme, all pages)
Example for Drupal 8/9/10/11 using a custom or child theme.
- In your theme folder, create or edit
yourtheme.libraries.ymland add:global-scripts: js: https://example.com/your-script.js: type: external attributes: defer: true - 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 - Clear Drupal caches (for example,
drush cror via Configuration → Performance). - Reload any page; the script will now be included globally.