Install the Aparsoft AI Chatbot on your WordPress site in under 2 minutes.
- Download the plugin
.zipfrom chatbot.aparsoft.com/downloads - In your WordPress admin, go to Plugins > Add New > Upload Plugin
- Choose the downloaded
.zipfile and click Install Now - Click Activate
- Download and extract the
.zipfile - Upload the
aparsoft-chatbotfolder to/wp-content/plugins/via FTP or file manager - In WordPress admin, go to Plugins and click Activate under "Aparsoft AI Chatbot"
- Go to Settings > Aparsoft Chatbot
- Paste your Widget API Key from the Aparsoft dashboard
- Configure optional settings:
- Widget Position -- Bottom Right or Bottom Left
- Show Branding -- Toggle "Powered by Aparsoft" footer
- Primary Color -- Main theme color (e.g.
#1d4ed8) - Secondary Color -- Accent color (e.g.
#0f766e) - Enable Chatbot -- Disable without losing settings
- Click Save & Connect Chatbot
If you don't have an API key yet:
- Sign up at chatbot.aparsoft.com (free)
- Register your website URL
- Wait 3-5 minutes while your site is scraped and vectorized
- Copy the API Key from the Integrations tab in the dashboard
When WooCommerce is active, the plugin automatically passes context to the chatbot:
- Cart count -- "I see you have 2 items in your cart"
- User name -- "Hi John! How can I help you?"
- Product pages -- Detects when a visitor is viewing a product
No additional configuration is needed -- WooCommerce context is passed automatically.
The chatbot widget does not slow down your site:
- The script loads asynchronously in the footer (no render blocking)
- The widget runs inside a sandboxed iframe on Aparsoft's infrastructure
- No PHP processing is required to render the chatbot -- only a
<script>tag is injected - Total footprint: < 15 KB for the loader script
- Verify your API Key is correct in Settings > Aparsoft Chatbot
- Ensure Enable Chatbot is checked
- Check the browser console for JavaScript errors
- Verify your site can reach
www.aparsoft.com(check firewall/security plugins)
- Your chatbot may still be indexing. Check the Aparsoft dashboard for status
- Verify your free quota hasn't been exhausted (50 messages/month on the free tier)
The widget uses Cache-Control: no-cache for the loader script, so most caching plugins will not cache it. If you use a aggressive page caching plugin, exclude the widget script URL from caching:
/www\.aparsoft\.com\/static\/chatbot-widget\/
If you use Wordfence, Sucuri, or similar security plugins, whitelist:
- Script domain:
www.aparsoft.com - Frame domain:
www.aparsoft.com - WebSocket domain:
www.aparsoft.com(port 443)
- Go to Plugins and deactivate "Aparsoft AI Chatbot"
- Click Delete -- this removes all plugin files and settings cleanly
The plugin removes all WordPress options on uninstall. No data is left behind.
If you prefer not to use the plugin, you can add the widget directly to your theme's footer.php:
<script
src="https://www.aparsoft.com/static/chatbot-widget/widget.loader.js"
data-aparsoft-chatbot="true"
data-api-key="YOUR_API_KEY"
></script>Add this just before </body> in your theme's footer template.