1. Overview of the Admin Menu #
When the plugin is active, it registers a Davix AI Engine admin menu. The documentation describes this in section 3.1.
- Core class responsible:
Davix_Chatbot::register_admin_pages() - It uses
add_menu_pageandadd_submenu_page. - Main slug:
davix-ai-engine(Chatbot settings).
Submenus (when modules exist):
- Chatbot (main screen)
- LLM Index
- Forms
- AI Writer (Pro)
- Auto-Reply (Pro)
- Debug Logs (
davix-ai-engine-debug) - About (
davix-ai-engine-about)
image IMAGE PLACEHOLDER: Screenshot of the Davix AI Engine admin menu showing Chatbot, LLM Index, Forms, AI Writer, Auto-Reply, Debug Logs, About. IMAGE image
If a module’s code is not present or inactive (e.g., Pro-only module without license), that submenu will not appear.
2. Chatbot Submenu (Main Settings Screen) #
The Chatbot page is the main configuration hub. From the docs, we know it includes tabs like:
- General
- Buttons
- Login Required
- OpenAI Integration
- Shortcode
- Advanced / Custom CSS (where applicable)
You will use these to:
- Name your chatbot.
- Configure the floating bubble.
- Configure full-page chat behavior.
- Enable/disable login requirement.
- Configure OpenAI key, model, prompt, temperature.
The detailed settings are covered in later Chatbot articles.
3. LLM Index Submenu #
The LLM Index page is for configuring your JSON and text index:
- Enable / disable the index.
- Choose public vs admin-only JSON access.
- Set max items and summary length.
- Choose which post types and taxonomies to include.
image IMAGE PLACEHOLDER: Screenshot of the “LLM Index” settings screen with enable toggle, public JSON toggle, max items, summary length, post type and taxonomy checkboxes. IMAGE image
4. Forms Submenu #
The Forms page includes multiple tabs: API, Settings, Entries, Email, Email Log, Telegram (Pro).
You can:
- Enable or disable the module.
- Choose which providers to capture (e.g., SureForms).
- View and manage captured entries.
- Configure email templates and logs.
- Configure Telegram alerts (Pro).
5. AI Writer & Auto-Reply Submenus (Pro) #
If Pro is active:
- AI Writer – settings and links to the Gutenberg sidebar module.
- Auto-Reply – controls for comment and WooCommerce review auto-replies, plus Telegram alerts.
If my_fs()->can_use_premium_code() returns false, these modules return early and their menus do not load.
6. Debug Logs Submenu #
The Debug Logs page lets you:
- Enable or disable logging for:
- Chatbot & Telegram bridge
- Comment auto-reply & Telegram alerts
- AI Writer
- Forms
- View log files.
- Clear logs when needed.
image IMAGE PLACEHOLDER: Screenshot of Debug Logs page showing checkboxes for each module (chatbot, forms, etc.) and “View log” buttons. IMAGE image
7. About Page #
The About page (menu: Davix AI Engine → About) is informational only:
- Shows overview of plugin capabilities.
- Walkthrough of key Chatbot tabs:
- General
- OpenAI Integration
- Login Required
- Buttons
- Shortcode
- May contain troubleshooting notes.
- Does not store any settings.
This is a safe starting place for users to understand what Davix AI Engine offers before they dive into specific modules.

