| @@ -86,8 +86,9 @@ | ||
| 86 | 86 | <button class="mxch-mobile-nav-sub-link" data-target="integrations-loops"><?php esc_html_e('Loops', 'mxchat'); ?></button> |
| 87 | 87 | <button class="mxch-mobile-nav-sub-link" data-target="integrations-brave"><?php esc_html_e('Brave Search', 'mxchat'); ?></button> |
| 88 | 88 | <button class="mxch-mobile-nav-sub-link" data-target="integrations-slack"><?php esc_html_e('Slack', 'mxchat'); ?></button> |
| 89 | 89 | <button class="mxch-mobile-nav-sub-link" data-target="integrations-telegram"><?php esc_html_e('Telegram', 'mxchat'); ?></button> |
| 90 | + <button class="mxch-mobile-nav-sub-link" data-target="integrations-webhook"><?php esc_html_e('Webhook', 'mxchat'); ?></button> | |
| 90 | 91 | </div> |
| 91 | 92 | </div> |
| 92 | 93 | <!-- Resources Section --> |
| 93 | 94 | <div class="mxch-mobile-nav-section"> |
| @@ -188,8 +189,9 @@ | ||
| 188 | 189 | <button class="mxch-nav-sub-link" data-target="integrations-loops"><?php esc_html_e('Loops', 'mxchat'); ?></button> |
| 189 | 190 | <button class="mxch-nav-sub-link" data-target="integrations-brave"><?php esc_html_e('Brave Search', 'mxchat'); ?></button> |
| 190 | 191 | <button class="mxch-nav-sub-link" data-target="integrations-slack"><?php esc_html_e('Slack', 'mxchat'); ?></button> |
| 191 | 192 | <button class="mxch-nav-sub-link" data-target="integrations-telegram"><?php esc_html_e('Telegram', 'mxchat'); ?></button> |
| 193 | + <button class="mxch-nav-sub-link" data-target="integrations-webhook"><?php esc_html_e('Webhook', 'mxchat'); ?></button> | |
| 192 | 194 | </div> |
| 193 | 195 | </div> |
| 194 | 196 | </div> |
| 195 | 197 | |
| @@ -244,8 +246,18 @@ | ||
| 244 | 246 | <h1 class="mxch-content-title"><?php esc_html_e('AI Models', 'mxchat'); ?></h1> |
| 245 | 247 | <p class="mxch-content-subtitle"><?php esc_html_e('Configure the AI models your chatbot will use for conversations and embeddings.', 'mxchat'); ?></p> |
| 246 | 248 | </div> |
| 247 | 249 | |
| 250 | + <?php | |
| 251 | + // Model-retirement warning (b65e8d). Rendered HERE rather than via | |
| 252 | + // admin_notices because the branded shell paints over WP's notice | |
| 253 | + // region — a core notice on this screen is invisible. No-ops unless | |
| 254 | + // the daily liveness check has flagged the configured model. | |
| 255 | + if (class_exists('MxChat_Model_Liveness')) { | |
| 256 | + MxChat_Model_Liveness::render_inline_notice(); | |
| 257 | + } | |
| 258 | + ?> | |
| 259 | + | |
| 248 | 260 | <div class="mxch-card"> |
| 249 | 261 | <div class="mxch-card-body mxchat-autosave-section"> |
| 250 | 262 | <?php |
| 251 | 263 | // Chat Model |
| @@ -303,8 +315,21 @@ | ||
| 303 | 315 | mxchat_render_field_wrapper('rag_chunks_limit', __('RAG Chunks Limit', 'mxchat'), function() use ($admin_instance) { |
| 304 | 316 | $admin_instance->mxchat_rag_chunks_limit_callback(); |
| 305 | 317 | }, __('Maximum total content chunks sent to the AI across all sources. Higher values provide more context but increase token usage and cost.', 'mxchat')); |
| 306 | 318 | |
| 319 | + // Hybrid keyword boost MOVED to Knowledge → Chunking & | |
| 320 | + // Retrieval (plan 11720c) — it is KB retrieval tuning, not | |
| 321 | + // conversation behavior. Same option key over there. The | |
| 322 | + // breadcrumb below is a one-release courtesy: drop it in | |
| 323 | + // the release after 3.2.17. | |
| 324 | + echo '<p class="mxch-field-description">'; | |
| 325 | + printf( | |
| 326 | + /* translators: %s: link to the Chunking & Retrieval settings tab. */ | |
| 327 | + esc_html__('Hybrid keyword boost has moved to %s.', 'mxchat'), | |
| 328 | + '<a href="' . esc_url(admin_url('admin.php?page=mxchat-prompts#chunking')) . '">' . esc_html__('Knowledge, Chunking & Retrieval', 'mxchat') . '</a>' | |
| 329 | + ); | |
| 330 | + echo '</p>'; | |
| 331 | + | |
| 307 | 332 | // Contextual Awareness |
| 308 | 333 | mxchat_render_field_wrapper('contextual_awareness', __('Contextual Awareness', 'mxchat'), function() use ($admin_instance) { |
| 309 | 334 | $admin_instance->mxchat_contextual_awareness_callback(); |
| 310 | 335 | }, __('Allow the chatbot to understand and reference the current page content for more relevant responses.', 'mxchat')); |
| @@ -313,8 +338,14 @@ | ||
| 313 | 338 | mxchat_render_field_wrapper('citation_links', __('Citation Links', 'mxchat'), function() use ($admin_instance) { |
| 314 | 339 | $admin_instance->mxchat_citation_links_toggle_callback(); |
| 315 | 340 | }, __('Allow the AI to include citation links from your knowledge database in responses. If disabled, ensure your AI Behavior settings do not mention links or the AI may fabricate URLs.', 'mxchat')); |
| 316 | 341 | |
| 342 | + // Strip Unapproved Links (plan 58f8b4) — enforcement is now | |
| 343 | + // its own control instead of riding Citation Links. | |
| 344 | + mxchat_render_field_wrapper('strip_unapproved_links', __('Strip Unapproved Links', 'mxchat'), function() use ($admin_instance) { | |
| 345 | + $admin_instance->mxchat_strip_unapproved_links_toggle_callback(); | |
| 346 | + }, __('Remove links the AI invents from its answers, even when Citation Links is off. Approved citations, real pages on this site, and links returned by your integrations (e.g. WooCommerce products) are always kept. On by default for new installs; existing sites keep their current behavior until enabled.', 'mxchat')); | |
| 347 | + | |
| 317 | 348 | // Satisfaction Rating Prompt |
| 318 | 349 | // The toggle callback inline-renders the 5 customization |
| 319 | 350 | // fields inside a single sub-options wrapper (plan-29caac). |
| 320 | 351 | // No separate customization group needed — the wrapper handles |
| @@ -321,8 +352,12 @@ | ||
| 321 | 352 | // its own server-side display state based on the toggle value. |
| 322 | 353 | mxchat_render_field_wrapper('satisfaction_rating', __('Satisfaction Rating Prompt', 'mxchat'), function() use ($admin_instance) { |
| 323 | 354 | $admin_instance->mxchat_satisfaction_rating_toggle_callback(); |
| 324 | 355 | }, __('Show a 👍 / 👎 prompt after a conversation has had a couple of bot replies and the visitor has been idle for a moment. Disable to hide the prompt site-wide.', 'mxchat')); |
| 356 | + | |
| 357 | + // Editor Assistant toggle moved to Content → Settings (plan-f7df40): | |
| 358 | + // it's a content feature, so it lives on the screen that owns it. | |
| 359 | + // Rendering is in admin-content-page.php; option + save path unchanged. | |
| 325 | 360 | ?> |
| 326 | 361 | </div> |
| 327 | 362 | </div> |
| 328 | 363 | </div> |
| @@ -462,8 +497,23 @@ | ||
| 462 | 497 | // Name Placeholder |
| 463 | 498 | mxchat_render_field_wrapper('name_placeholder', __('Name Field Placeholder', 'mxchat'), function() use ($admin_instance) { |
| 464 | 499 | $admin_instance->name_field_placeholder_callback(); |
| 465 | 500 | }, __('Placeholder text for the name input field.', 'mxchat')); |
| 501 | + | |
| 502 | + // Consent Checkbox (b062c4) | |
| 503 | + mxchat_render_field_wrapper('enable_consent_checkbox', __('Consent Checkbox', 'mxchat'), function() use ($admin_instance) { | |
| 504 | + $admin_instance->enable_consent_checkbox_callback(); | |
| 505 | + }, __('Show a consent checkbox on the email form. The decision, time, and exact label shown are stored with the lead.', 'mxchat')); | |
| 506 | + | |
| 507 | + // Consent Label | |
| 508 | + mxchat_render_field_wrapper('consent_checkbox_label', __('Consent Label', 'mxchat'), function() use ($admin_instance) { | |
| 509 | + $admin_instance->consent_checkbox_label_callback(); | |
| 510 | + }, __('Text shown beside the checkbox. Anchor tags are allowed so you can link your Privacy Policy; other HTML is stripped.', 'mxchat')); | |
| 511 | + | |
| 512 | + // Consent Required | |
| 513 | + mxchat_render_field_wrapper('consent_checkbox_required', __('Require Consent to Submit', 'mxchat'), function() use ($admin_instance) { | |
| 514 | + $admin_instance->consent_checkbox_required_callback(); | |
| 515 | + }, __('Block form submission until the box is ticked. Off means the checkbox is optional (a soft opt-in).', 'mxchat')); | |
| 466 | 516 | ?> |
| 467 | 517 | </div> |
| 468 | 518 | </div> |
| 469 | 519 | |
| @@ -615,8 +665,18 @@ | ||
| 615 | 665 | </div> |
| 616 | 666 | <p class="mxch-field-description"><?php esc_html_e('Control when the chatbot script loads to improve page performance.', 'mxchat'); ?></p> |
| 617 | 667 | </div> |
| 618 | 668 | |
| 669 | + <?php | |
| 670 | + // Smart asset loading (plan-915355; rebuilt on the house toggle | |
| 671 | + // pattern in plan-64d34f). Standalone option — never part of | |
| 672 | + // mxchat_options, so mxchat_sanitize() can't strip it. | |
| 673 | + mxchat_render_field_wrapper('mxchat_smart_asset_loading', __('Only load chatbot files on pages where the chatbot appears', 'mxchat'), function() use ($admin_instance) { | |
| 674 | + $admin_instance->mxchat_smart_asset_loading_toggle_callback(); | |
| 675 | + }, __('Skips the chatbot\'s CSS and JavaScript on pages where the widget is hidden (per-page visibility, post type include/exclude, or auto-display disabled). Pages using the chatbot shortcode still load everything automatically. Helps with "reduce unused CSS/JS" audit findings.', 'mxchat'), | |
| 676 | + __('If your theme or page builder inserts the chatbot in an unusual way and it stops appearing, turn this off — or force-load assets with the mxchat_should_load_assets filter.', 'mxchat')); | |
| 677 | + ?> | |
| 678 | + | |
| 619 | 679 | <div class="mxch-notice mxch-notice-info" style="margin-top: 16px;"> |
| 620 | 680 | <svg class="mxch-notice-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/></svg> |
| 621 | 681 | <div> |
| 622 | 682 | <strong><?php esc_html_e('Loading Strategies:', 'mxchat'); ?></strong> |
| @@ -734,8 +794,15 @@ | ||
| 734 | 794 | <?php esc_html_e('Debug Mode', 'mxchat'); ?> |
| 735 | 795 | </h3> |
| 736 | 796 | </div> |
| 737 | 797 | <div class="mxch-card-body"> |
| 798 | + <?php // Deliberate exception to the house .toggle-switch pattern | |
| 799 | + // (audited in plan-64d34f): this card-body is NOT an | |
| 800 | + // autosave section — the toggle saves through its own | |
| 801 | + // dedicated handler (mxchat_toggle_debug_mode, wired at | |
| 802 | + // mxchat-admin.js #mxchat_debug_mode) which appends its own | |
| 803 | + // save indicator inside this label. Converting the markup | |
| 804 | + // would orphan that indicator without touching the JS. ?> | |
| 738 | 805 | <div class="mxch-field"> |
| 739 | 806 | <label class="mxch-toggle"> |
| 740 | 807 | <input type="checkbox" class="mxch-toggle-input" id="mxchat_debug_mode" name="mxchat_options[debug_mode]" value="on" <?php checked($debug_active); ?>> |
| 741 | 808 | <span class="mxch-toggle-switch"></span> |
| @@ -1053,8 +1120,69 @@ | ||
| 1053 | 1120 | </div> |
| 1054 | 1121 | </div> |
| 1055 | 1122 | |
| 1056 | 1123 | <!-- ======================================== |
| 1124 | + INTEGRATIONS - WEBHOOK HANDOFF (plan d88e22) | |
| 1125 | + ======================================== --> | |
| 1126 | + <div id="integrations-webhook" class="mxch-section"> | |
| 1127 | + <div class="mxch-content-header"> | |
| 1128 | + <h1 class="mxch-content-title"><?php esc_html_e('Webhook', 'mxchat'); ?></h1> | |
| 1129 | + <p class="mxch-content-subtitle"><?php esc_html_e('Route live-agent handoffs to any URL you choose — your helpdesk, an automation flow, a CRM.', 'mxchat'); ?></p> | |
| 1130 | + </div> | |
| 1131 | + | |
| 1132 | + <div class="mxch-notice mxch-notice-info" style="margin-bottom: 24px;"> | |
| 1133 | + <svg class="mxch-notice-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/></svg> | |
| 1134 | + <div> | |
| 1135 | + <?php esc_html_e('This destination is outbound-only: MxChat delivers the handoff to your URL and the chatbot keeps assisting the visitor. Your team follows up separately — by email, phone, or your own support tool.', 'mxchat'); ?> | |
| 1136 | + </div> | |
| 1137 | + </div> | |
| 1138 | + | |
| 1139 | + <div class="mxch-card"> | |
| 1140 | + <div class="mxch-card-body mxchat-autosave-section"> | |
| 1141 | + <table class="form-table"> | |
| 1142 | + <?php do_settings_fields('mxchat-embed', 'mxchat_webhook_handoff_section'); ?> | |
| 1143 | + </table> | |
| 1144 | + </div> | |
| 1145 | + </div> | |
| 1146 | + | |
| 1147 | + <div class="mxch-card" style="margin-top: 24px;"> | |
| 1148 | + <div class="mxch-card-header"> | |
| 1149 | + <h3 class="mxch-card-title"> | |
| 1150 | + <svg class="mxch-card-title-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/></svg> | |
| 1151 | + <?php esc_html_e('Payload Reference', 'mxchat'); ?> | |
| 1152 | + </h3> | |
| 1153 | + </div> | |
| 1154 | + <div class="mxch-card-body"> | |
| 1155 | + <p class="mxch-field-description" style="margin-bottom: 12px;"> | |
| 1156 | + <?php esc_html_e('Each handoff arrives at your URL as an HTTPS POST with Content-Type application/json:', 'mxchat'); ?> | |
| 1157 | + </p> | |
| 1158 | + <pre style="background: #f8f9fa; padding: 16px; border-radius: 8px; font-size: 12px; overflow-x: auto; margin: 0 0 16px;"><?php echo esc_html('{ | |
| 1159 | + "event": "live_agent_handoff", | |
| 1160 | + "site": { "name": "Your Site", "url": "https://your-site.com" }, | |
| 1161 | + "session_id": "mxchat_chat_…", | |
| 1162 | + "user_id": 0, | |
| 1163 | + "visitor": { "name": "Ada", "email": "ada@example.com" }, | |
| 1164 | + "current_message": "I need to talk to a human", | |
| 1165 | + "recent_messages": [ | |
| 1166 | + { "role": "user", "content": "…", "timestamp": 1755900000 }, | |
| 1167 | + { "role": "assistant", "content": "…", "timestamp": 1755900012 } | |
| 1168 | + ], | |
| 1169 | + "requested_at": "2026-08-22T14:30:00+00:00" | |
| 1170 | +}'); ?></pre> | |
| 1171 | + <p class="mxch-field-description" style="margin-bottom: 12px;"> | |
| 1172 | + <?php esc_html_e('When a Signing Secret is set, each request also carries this header so your endpoint can verify the sender — compute the HMAC of the raw request body with your secret and compare:', 'mxchat'); ?> | |
| 1173 | + </p> | |
| 1174 | + <div class="mxch-webhook-url-display" style="margin-bottom: 16px;"> | |
| 1175 | + <code>X-MxChat-Signature: sha256=<hex hmac-sha256 of the raw body></code> | |
| 1176 | + </div> | |
| 1177 | + <p class="mxch-field-description"> | |
| 1178 | + <?php esc_html_e('Answer with any 2xx status. Delivery uses a 5-second timeout with one retry on transport errors and 5xx responses; redirects are not followed. The last failed delivery is shown under the Webhook URL field above.', 'mxchat'); ?> | |
| 1179 | + </p> | |
| 1180 | + </div> | |
| 1181 | + </div> | |
| 1182 | + </div> | |
| 1183 | + | |
| 1184 | + <!-- ======================================== | |
| 1057 | 1185 | TUTORIALS |
| 1058 | 1186 | ======================================== --> |
| 1059 | 1187 | <div id="tutorials" class="mxch-section"> |
| 1060 | 1188 | <div class="mxch-content-header"> |
| @@ -1311,145 +1439,13 @@ | ||
| 1311 | 1439 | </div> |
| 1312 | 1440 | |
| 1313 | 1441 | <script> |
| 1314 | 1442 | document.addEventListener('DOMContentLoaded', function() { |
| 1315 | - // Sidebar navigation | |
| 1316 | - const navLinks = document.querySelectorAll('.mxch-nav-link, .mxch-nav-sub-link'); | |
| 1317 | - const sections = document.querySelectorAll('.mxch-section'); | |
| 1318 | - const navItems = document.querySelectorAll('.mxch-nav-item'); | |
| 1443 | + // Sidebar/tab navigation, accordion groups, ?tab=/#hash deep-linking | |
| 1444 | + // and the mobile menu all live in the shared shell script | |
| 1445 | + // (js/admin-sidebar.js) — consolidated by plan c192a4. Only the | |
| 1446 | + // page-local widgets below remain inline. | |
| 1319 | 1447 | |
| 1320 | - function showSection(target) { | |
| 1321 | - // Show target section | |
| 1322 | - sections.forEach(section => { | |
| 1323 | - section.classList.remove('active'); | |
| 1324 | - if (section.id === target) { | |
| 1325 | - section.classList.add('active'); | |
| 1326 | - } | |
| 1327 | - }); | |
| 1328 | - | |
| 1329 | - // Scroll content area to top | |
| 1330 | - const contentArea = document.querySelector('.mxch-content'); | |
| 1331 | - if (contentArea) { | |
| 1332 | - contentArea.scrollTop = 0; | |
| 1333 | - } | |
| 1334 | - } | |
| 1335 | - | |
| 1336 | - function setActiveNav(clickedLink) { | |
| 1337 | - // Remove active from all links | |
| 1338 | - navLinks.forEach(l => l.classList.remove('active')); | |
| 1339 | - | |
| 1340 | - // Add active to clicked link | |
| 1341 | - clickedLink.classList.add('active'); | |
| 1342 | - | |
| 1343 | - // If clicking a sub-link, also highlight parent | |
| 1344 | - if (clickedLink.classList.contains('mxch-nav-sub-link')) { | |
| 1345 | - const parent = clickedLink.closest('.mxch-nav-item'); | |
| 1346 | - if (parent) { | |
| 1347 | - parent.querySelector('.mxch-nav-link').classList.add('active'); | |
| 1348 | - } | |
| 1349 | - } | |
| 1350 | - } | |
| 1351 | - | |
| 1352 | - navLinks.forEach(link => { | |
| 1353 | - link.addEventListener('click', function(e) { | |
| 1354 | - e.preventDefault(); | |
| 1355 | - e.stopPropagation(); | |
| 1356 | - const target = this.dataset.target; | |
| 1357 | - const parentItem = this.closest('.mxch-nav-item'); | |
| 1358 | - const hasSubmenu = parentItem && parentItem.querySelector('.mxch-nav-sub'); | |
| 1359 | - | |
| 1360 | - // If this is a parent nav link WITH children (expandable menu) | |
| 1361 | - if (this.classList.contains('mxch-nav-link') && hasSubmenu) { | |
| 1362 | - const wasExpanded = parentItem.classList.contains('expanded'); | |
| 1363 | - | |
| 1364 | - // Collapse all other expandable items | |
| 1365 | - navItems.forEach(item => { | |
| 1366 | - if (item !== parentItem && item.querySelector('.mxch-nav-sub')) { | |
| 1367 | - item.classList.remove('expanded'); | |
| 1368 | - } | |
| 1369 | - }); | |
| 1370 | - | |
| 1371 | - // Toggle this item | |
| 1372 | - parentItem.classList.toggle('expanded'); | |
| 1373 | - | |
| 1374 | - // If expanding, show the first sub-item's content and mark it active | |
| 1375 | - if (!wasExpanded) { | |
| 1376 | - const firstSubLink = parentItem.querySelector('.mxch-nav-sub-link'); | |
| 1377 | - if (firstSubLink) { | |
| 1378 | - const firstTarget = firstSubLink.dataset.target; | |
| 1379 | - showSection(firstTarget); | |
| 1380 | - setActiveNav(firstSubLink); | |
| 1381 | - // Also mark parent as active | |
| 1382 | - this.classList.add('active'); | |
| 1383 | - history.replaceState(null, null, '#' + firstTarget); | |
| 1384 | - } | |
| 1385 | - } | |
| 1386 | - } | |
| 1387 | - // If this is a nav link WITHOUT children (like API Keys, Tutorials) | |
| 1388 | - else if (this.classList.contains('mxch-nav-link') && !hasSubmenu && target) { | |
| 1389 | - // Collapse all expandable items | |
| 1390 | - navItems.forEach(item => { | |
| 1391 | - if (item.querySelector('.mxch-nav-sub')) { | |
| 1392 | - item.classList.remove('expanded'); | |
| 1393 | - } | |
| 1394 | - }); | |
| 1395 | - | |
| 1396 | - // Show the section | |
| 1397 | - showSection(target); | |
| 1398 | - setActiveNav(this); | |
| 1399 | - history.replaceState(null, null, '#' + target); | |
| 1400 | - } | |
| 1401 | - // If this is a sub-link | |
| 1402 | - else if (this.classList.contains('mxch-nav-sub-link') && target) { | |
| 1403 | - // Ensure parent stays expanded | |
| 1404 | - if (parentItem) { | |
| 1405 | - parentItem.classList.add('expanded'); | |
| 1406 | - } | |
| 1407 | - showSection(target); | |
| 1408 | - setActiveNav(this); | |
| 1409 | - history.replaceState(null, null, '#' + target); | |
| 1410 | - } | |
| 1411 | - }); | |
| 1412 | - }); | |
| 1413 | - | |
| 1414 | - // Handle initial deep-link (?tab=<slug> takes precedence over #hash so the | |
| 1415 | - // Onboarding setup-step CTAs land on the right sub-tab). Whitelist of valid | |
| 1416 | - // section ids must stay in sync with the .mxch-section[id] values above. | |
| 1417 | - const validTabs = [ | |
| 1418 | - 'chatbot-ai-models', 'chatbot-behavior', 'chatbot-display', | |
| 1419 | - 'chatbot-lead-capture', 'chatbot-quick-questions', 'chatbot-rate-limits', | |
| 1420 | - 'api-keys', 'optimization', 'testing', | |
| 1421 | - 'integrations-toolbar', 'integrations-loops', 'integrations-brave', | |
| 1422 | - 'integrations-slack', 'integrations-telegram', | |
| 1423 | - 'tutorials' | |
| 1424 | - ]; | |
| 1425 | - function activateTab(target) { | |
| 1426 | - if (!target) return false; | |
| 1427 | - if (validTabs.indexOf(target) === -1) return false; | |
| 1428 | - const targetLink = document.querySelector('[data-target="' + target + '"]'); | |
| 1429 | - if (!targetLink) return false; | |
| 1430 | - const parentItem = targetLink.closest('.mxch-nav-item'); | |
| 1431 | - if (parentItem && targetLink.classList.contains('mxch-nav-sub-link')) { | |
| 1432 | - parentItem.classList.add('expanded'); | |
| 1433 | - } | |
| 1434 | - showSection(target); | |
| 1435 | - setActiveNav(targetLink); | |
| 1436 | - return true; | |
| 1437 | - } | |
| 1438 | - const urlParams = new URLSearchParams(window.location.search); | |
| 1439 | - const tabParam = urlParams.get('tab'); | |
| 1440 | - let tabActivated = false; | |
| 1441 | - if (tabParam) { | |
| 1442 | - tabActivated = activateTab(tabParam); | |
| 1443 | - // Invalid ?tab=… silently falls through to default (#hash or AI Models). | |
| 1444 | - } | |
| 1445 | - if (!tabActivated) { | |
| 1446 | - const hash = window.location.hash.slice(1); | |
| 1447 | - if (hash) { | |
| 1448 | - activateTab(hash); | |
| 1449 | - } | |
| 1450 | - } | |
| 1451 | - | |
| 1452 | 1448 | // Rate limit accordion |
| 1453 | 1449 | const rateLimitHeaders = document.querySelectorAll('.mxch-rate-limit-header'); |
| 1454 | 1450 | rateLimitHeaders.forEach(header => { |
| 1455 | 1451 | header.addEventListener('click', function(e) { |
| @@ -1476,102 +1472,8 @@ | ||
| 1476 | 1472 | }; |
| 1477 | 1473 | sel.addEventListener('change', sync); |
| 1478 | 1474 | sync(); |
| 1479 | 1475 | }); |
| 1480 | - | |
| 1481 | - // ===================================================== | |
| 1482 | - // Mobile Menu Functionality | |
| 1483 | - // ===================================================== | |
| 1484 | - const mobileMenuBtn = document.querySelector('.mxch-mobile-menu-btn'); | |
| 1485 | - const mobileMenuClose = document.querySelector('.mxch-mobile-menu-close'); | |
| 1486 | - const mobileMenu = document.querySelector('.mxch-mobile-menu'); | |
| 1487 | - const mobileOverlay = document.querySelector('.mxch-mobile-overlay'); | |
| 1488 | - const mobileNavLinks = document.querySelectorAll('.mxch-mobile-nav-link, .mxch-mobile-nav-sub-link'); | |
| 1489 | - | |
| 1490 | - function openMobileMenu() { | |
| 1491 | - mobileMenu.classList.add('open'); | |
| 1492 | - mobileOverlay.classList.add('open'); | |
| 1493 | - document.body.style.overflow = 'hidden'; | |
| 1494 | - } | |
| 1495 | - | |
| 1496 | - function closeMobileMenu() { | |
| 1497 | - mobileMenu.classList.remove('open'); | |
| 1498 | - mobileOverlay.classList.remove('open'); | |
| 1499 | - document.body.style.overflow = ''; | |
| 1500 | - } | |
| 1501 | - | |
| 1502 | - if (mobileMenuBtn) { | |
| 1503 | - mobileMenuBtn.addEventListener('click', openMobileMenu); | |
| 1504 | - } | |
| 1505 | - | |
| 1506 | - if (mobileMenuClose) { | |
| 1507 | - mobileMenuClose.addEventListener('click', closeMobileMenu); | |
| 1508 | - } | |
| 1509 | - | |
| 1510 | - if (mobileOverlay) { | |
| 1511 | - mobileOverlay.addEventListener('click', closeMobileMenu); | |
| 1512 | - } | |
| 1513 | - | |
| 1514 | - // Mobile navigation links | |
| 1515 | - mobileNavLinks.forEach(link => { | |
| 1516 | - link.addEventListener('click', function(e) { | |
| 1517 | - e.preventDefault(); | |
| 1518 | - e.stopPropagation(); | |
| 1519 | - | |
| 1520 | - const target = this.dataset.target; | |
| 1521 | - const parentId = this.dataset.parent; | |
| 1522 | - | |
| 1523 | - // If this is an expandable parent link | |
| 1524 | - if (parentId && !target) { | |
| 1525 | - const subNav = document.querySelector('.mxch-mobile-nav-sub[data-parent="' + parentId + '"]'); | |
| 1526 | - if (subNav) { | |
| 1527 | - const isExpanded = subNav.classList.contains('expanded'); | |
| 1528 | - // Collapse all sub navs | |
| 1529 | - document.querySelectorAll('.mxch-mobile-nav-sub').forEach(nav => { | |
| 1530 | - nav.classList.remove('expanded'); | |
| 1531 | - }); | |
| 1532 | - document.querySelectorAll('.mxch-mobile-nav-link').forEach(l => { | |
| 1533 | - l.classList.remove('expanded'); | |
| 1534 | - }); | |
| 1535 | - // Toggle this one | |
| 1536 | - if (!isExpanded) { | |
| 1537 | - subNav.classList.add('expanded'); | |
| 1538 | - this.classList.add('expanded'); | |
| 1539 | - } | |
| 1540 | - } | |
| 1541 | - } | |
| 1542 | - // If this is a direct link or sub-link with a target | |
| 1543 | - else if (target) { | |
| 1544 | - // Update mobile nav active state | |
| 1545 | - document.querySelectorAll('.mxch-mobile-nav-link, .mxch-mobile-nav-sub-link').forEach(l => { | |
| 1546 | - l.classList.remove('active'); | |
| 1547 | - }); | |
| 1548 | - this.classList.add('active'); | |
| 1549 | - | |
| 1550 | - // Also update desktop sidebar nav | |
| 1551 | - const desktopLink = document.querySelector('.mxch-sidebar [data-target="' + target + '"]'); | |
| 1552 | - if (desktopLink) { | |
| 1553 | - setActiveNav(desktopLink); | |
| 1554 | - const parentItem = desktopLink.closest('.mxch-nav-item'); | |
| 1555 | - if (parentItem && desktopLink.classList.contains('mxch-nav-sub-link')) { | |
| 1556 | - parentItem.classList.add('expanded'); | |
| 1557 | - } | |
| 1558 | - } | |
| 1559 | - | |
| 1560 | - // Show section and close menu | |
| 1561 | - showSection(target); | |
| 1562 | - history.replaceState(null, null, '#' + target); | |
| 1563 | - closeMobileMenu(); | |
| 1564 | - } | |
| 1565 | - }); | |
| 1566 | - }); | |
| 1567 | - | |
| 1568 | - // Close mobile menu on escape key | |
| 1569 | - document.addEventListener('keydown', function(e) { | |
| 1570 | - if (e.key === 'Escape' && mobileMenu && mobileMenu.classList.contains('open')) { | |
| 1571 | - closeMobileMenu(); | |
| 1572 | - } | |
| 1573 | - }); | |
| 1574 | 1476 | }); |
| 1575 | 1477 | </script> |
| 1576 | 1478 | <?php |
| 1577 | 1479 | } |
| @@ -1577,10 +1479,14 @@ | ||
| 1577 | 1479 | } |
| 1578 | 1480 | |
| 1579 | 1481 | /** |
| 1580 | 1482 | * Helper function to render a field with consistent wrapper |
| 1483 | + * | |
| 1484 | + * $hint renders as a .mxch-field-hint line under the description — the | |
| 1485 | + * softer "caveats / fine print" slot (added for plan-64d34f so hint-bearing | |
| 1486 | + * fields don't have to hand-roll the wrapper markup). | |
| 1581 | 1487 | */ |
| 1582 | -function mxchat_render_field_wrapper($id, $label, $callback, $description = '') { | |
| 1488 | +function mxchat_render_field_wrapper($id, $label, $callback, $description = '', $hint = '') { | |
| 1583 | 1489 | ?> |
| 1584 | 1490 | <div class="mxch-field"> |
| 1585 | 1491 | <label class="mxch-field-label"><?php echo esc_html($label); ?></label> |
| 1586 | 1492 | <div class="mxch-field-control"> |
| @@ -1587,8 +1493,11 @@ | ||
| 1587 | 1493 | <?php $callback(); ?> |
| 1588 | 1494 | </div> |
| 1589 | 1495 | <?php if ($description): ?> |
| 1590 | 1496 | <p class="mxch-field-description"><?php echo esc_html($description); ?></p> |
| 1497 | + <?php endif; ?> | |
| 1498 | + <?php if ($hint): ?> | |
| 1499 | + <p class="mxch-field-hint"><?php echo esc_html($hint); ?></p> | |
| 1591 | 1500 | <?php endif; ?> |
| 1592 | 1501 | </div> |
| 1593 | 1502 | <?php |
| 1594 | 1503 | } |