PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / 3.1.4
MxChat – AI Chatbot & Content Generation for WordPress v3.1.4
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
← All changes | admin/class-ajax-handler.php +2 -8 3.2.23.1.4 View file →
@@ -190,15 +190,8 @@
190 190 if ($rag_limit < 3) $rag_limit = 3;
191 191 if ($rag_limit > 10) $rag_limit = 10;
192 192 $options[$field_name] = $rag_limit;
193 193 break;
194 - case 'rag_chunks_limit':
195 - // Validate and save - enforce min 8, max 20, default 15
196 - $chunks_limit = intval($value);
197 - if ($chunks_limit < 8) $chunks_limit = 8;
198 - if ($chunks_limit > 20) $chunks_limit = 20;
199 - $options[$field_name] = $chunks_limit;
200 - break;
201 194 case 'live_agent_status':
202 195 //error_log('MXChat Save: Processing live_agent_status');
203 196 // Set the new value
204 197 $options[$field_name] = ($value === 'on') ? 'on' : 'off';
@@ -370,9 +363,10 @@
370 363 'enable_streaming_toggle',
371 364 'contextual_awareness_toggle',
372 365 'citation_links_toggle',
373 366 'enable_email_block',
374 - 'enable_name_field'
367 + 'enable_name_field',
368 + 'show_frontend_debugger'
375 369 ])) {
376 370 //error_log('MXChat Save: Processing toggle: ' . $field_name);
377 371 $options[$field_name] = ($value === 'on') ? 'on' : 'off';
378 372 } else {