Get Aqoiy running on your platform in under 10 minutes.
Full plugin integration — installs in two clicks and connects automatically.
Grab the latest Aqoiy AI Customer Support plugin ZIP file.
Get from WordPress.org →WordPress Admin → Plugins → Add NewAI Chatbot → Settings in your sidebarAdd the Aqoiy embed widget to your Shopify theme in 3 steps.
After registration, copy your embed code from the dashboard. It looks like this:
<script> window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; </script> <script src="https://aqoiy.com/widget.js" async></script>
Online Store → Themeslayout/theme.liquid</body> tagAdd the Aqoiy widget to any Wix site via Custom Code.
Copy your snippet from the Aqoiy dashboard.
<script> window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; </script> <script src="https://aqoiy.com/widget.js" async></script>
Settings → Custom CodeDrop the Aqoiy widget into Squarespace with Code Injection.
Settings → Advanced → Code Injection<script> window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; </script> <script src="https://aqoiy.com/widget.js" async></script>
Install via the BigCommerce Script Manager.
Storefront → Script Manager<script> window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; </script> <script src="https://aqoiy.com/widget.js" async></script>
Mount the widget once at the app root with a simple useEffect.
Sign up free and select React / Next.js as your platform.
Get Started Free →Drop this into your _app.tsx (Pages Router) or root layout.tsx (App Router):
useEffect(() => { window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; const script = document.createElement('script'); script.src = 'https://aqoiy.com/widget.js'; script.async = true; document.body.appendChild(script); return () => { document.body.removeChild(script); }; }, []);
For Next.js App Router, wrap this in a client component ('use client') since it uses browser APIs.
Two script tags. That's the entire installation.
Sign up free and select HTML / Static site as your platform.
Get Started Free →Paste this snippet just before the closing </body> tag on every page where the widget should appear:
<script> window.AqoiyConfig = { storeId: 'YOUR_STORE_ID', apiKey: 'YOUR_API_KEY' }; </script> <script src="https://aqoiy.com/widget.js" async></script>
Works with any static site generator — Hugo, Jekyll, Astro, plain HTML, or anything that lets you edit the page template.