PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.83
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.83
51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 All 39 releases
← All changes | includes/extensions/Custom_Code_Manager/Custom_Code_Manager.php +10 -10 51.1.7651.1.83 View file →
@@ -187,9 +187,9 @@
187 187
188 188 // Theme mode (shared across all views)
189 189 $theme_mode = get_user_meta(get_current_user_id(), 'king_addons_theme_mode', true);
190 190 if (!in_array($theme_mode, ['light', 'dark', 'auto'], true)) {
191 - $theme_mode = 'dark';
191 + $theme_mode = 'auto';
192 192 }
193 193 // Store for sub-renderers
194 194 $this->theme_mode = $theme_mode;
195 195
@@ -1597,15 +1597,15 @@
1597 1597 if (empty($this->debug_log)) {
1598 1598 return;
1599 1599 }
1600 1600
1601 - echo "\n<!-- King Addons Custom Code Debug Log -->\n";
1602 - echo "<script>\n";
1603 - echo "console.group('King Addons Custom Code Manager');\n";
1604 - foreach ($this->debug_log as $entry) {
1605 - $status = $entry['result'] ? '🟢' : '🔴';
1606 - echo "console.log('" . $status . " " . esc_js($entry['snippet']) . " (ID: " . $entry['id'] . ")');\n";
1607 - }
1608 - echo "console.groupEnd();\n";
1609 - echo "</script>\n";
1601 + // echo "\n<!-- King Addons Custom Code Debug Log -->\n";
1602 + // echo "<script>\n";
1603 + // echo "console.group('King Addons Custom Code Manager');\n";
1604 + // foreach ($this->debug_log as $entry) {
1605 + // $status = $entry['result'] ? '🟢' : '🔴';
1606 + // echo "console.log('" . $status . " " . esc_js($entry['snippet']) . " (ID: " . $entry['id'] . ")');\n";
1607 + // }
1608 + // echo "console.groupEnd();\n";
1609 + // echo "</script>\n";
1610 1610 }
1611 1611 }