Admin Settings Overview
Accessing the Settings Page
To configure your chatbots, log in to your WordPress Admin Dashboard and navigate to the Supervised AI Bots menu item located in the sidebar. This central management hub allows you to define the source URLs for your AI agents and manage how they are deployed across your site.
Configuring Chatbot URLs
The primary configuration happens within the Bot Settings tab. The plugin uses a list-based system to register multiple chatbots.
Adding New Bots
- Locate the Bot URLs textarea.
- Enter the full URL of your Supervised AI chatbot (e.g.,
https://supervised.co/bot/your-unique-id). - To add multiple bots, enter each URL on a new line.
- Click Save Changes to register the bots.
Note: The order of the URLs is important, as the plugin assigns an ID to each bot based on its line number (the first line is ID 1, the second line is ID 2, and so on).
Shortcode Implementation
Once your URLs are saved, you can display the chatbots on any page, post, or widget area using the integrated shortcode system.
Usage Syntax
Use the [supervised_ai_bot] shortcode with the id attribute corresponding to the row number in your settings.
[supervised_ai_bot id="1"]
Reference Table
| Line Number in Settings | Shortcode Example |
| :--- | :--- |
| Line 1 | [supervised_ai_bot id="1"] |
| Line 2 | [supervised_ai_bot id="2"] |
| Line N | [supervised_ai_bot id="N"] |
Chatbot Behavior and Appearance
When a shortcode is placed on a page, the plugin automatically handles the frontend interface. The following elements are standard across all deployed bots:
- Floating Launch Button: A blue circular button appears at the bottom-right corner of the screen.
- Popup Interface: Clicking the button toggles a responsive chat window (400px wide by 670px high).
- Persistent Display: The chat widget is fixed to the viewport, ensuring users can access support regardless of their scroll position.
- Iframe Integration: The bot content is loaded securely via an iframe directly from the Supervised AI platform, ensuring your bot's latest logic and training are always live.
Troubleshooting Configuration
- Bot not appearing: Ensure the URL entered in the settings is correct and that the
idin your shortcode matches the correct line number. - Layout Issues: The chat window is designed to stay on top of other content (z-index: 9999). If it is being hidden, check if your WordPress theme has elements with higher z-index values.
- URL Format: Always include the protocol (
https://) when pasting URLs into the admin settings to ensure the iframe loads correctly.