Platform Integration Guides
Learn how to integrate AI Chat Assist with various platforms
Platform Integration Guides
AI Chat Assist can be integrated with a wide range of platforms and content management systems. Follow these guides to add your chatbot to your preferred platform.
WordPress
<!-- Add to your WordPress theme's footer.php or via a custom HTML block -->
<script src="https://cdn.aichatassist.com/init.js" data-bot-id="YOUR_BOT_ID"></script>
Alternatively, you can use our official WordPress plugin:
- Go to Plugins > Add New in your WordPress dashboard
- Search for “AI Chat Assist”
- Install and activate the plugin
- Enter your Bot ID in the plugin settings
Shopify
- From your Shopify admin, go to Online Store > Themes
- Click “Actions” and then “Edit code”
- Under the Layout folder, open theme.liquid
- Add the following code just before the closing
</body>tag:
<script src="https://cdn.aichatassist.com/init.js" data-bot-id="YOUR_BOT_ID"></script>
- Click Save
React
Install our React component:
npm install aichatassist-react
Then import and use it in your application:
import { AIChatAssist } from 'aichatassist-react';
function App() {
return (
<div className="App">
<h1>My React App</h1>
<AIChatAssist botId="YOUR_BOT_ID" />
</div>
);
}
Angular
Install our Angular package:
npm install aichatassist-angular
Import the module in your app.module.ts:
import { AIChatAssistModule } from 'aichatassist-angular';
@NgModule({
imports: [
AIChatAssistModule.forRoot({
botId: 'YOUR_BOT_ID'
})
]
})
export class AppModule { }
HTML (Any Website)
Add the following script tag to your HTML file, just before the closing </body> tag:
<script src="https://cdn.aichatassist.com/init.js" data-bot-id="YOUR_BOT_ID"></script>
Webflow
- Go to your Webflow project dashboard
- Navigate to Project Settings > Custom Code
- Add the following code to the “Footer Code” section:
<script src="https://cdn.aichatassist.com/init.js" data-bot-id="YOUR_BOT_ID"></script>
- Save and publish your site
Wix
- Go to your Wix Editor
- Click on “Settings” in the left sidebar
- Select “Custom Code”
- Click “Add Custom Code”
- Paste the following code:
<script src="https://cdn.aichatassist.com/init.js" data-bot-id="YOUR_BOT_ID"></script>
- Set “Place Code in” to “Body - end”
- Click “Apply” and publish your site
Troubleshooting Integration Issues
If your chatbot isn’t appearing after integration:
- Verify your Bot ID is correct
- Check if the domain is whitelisted in your AI Chat Assist dashboard
- Clear your browser cache and reload the page
- Check your browser console for any JavaScript errors
- Ensure there are no script blockers or content security policies preventing the script from loading
For additional help, contact our support team.
