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/widgets/MailChimp/MailChimp.php +5 -2 51.1.6451.1.83 View file →
@@ -1049,9 +1049,12 @@
1049 1049 'title' => esc_html__('Right', 'king-addons'),
1050 1050 'icon' => 'eicon-text-align-right',
1051 1051 ],
1052 1052 ],
1053 - 'default' => 'left',
1053 + // Was 'left', which is not a valid align-self value, so browsers
1054 + // dropped the rule and the control opened with nothing selected.
1055 + // Empty keeps today's rendering and leaves the choice to the user.
1056 + 'default' => '',
1054 1057 'selectors' => [
1055 1058 '{{WRAPPER}}.king-addons-mailchimp-layout-vr .king-addons-mailchimp-subscribe' => 'align-self: {{VALUE}};',
1056 1059 ],
1057 1060 'condition' => [
@@ -1455,9 +1458,9 @@
1455 1458 }
1456 1459
1457 1460 protected function render()
1458 1461 {
1459 - $settings = $this->get_settings();
1462 + $settings = Core::displaySettings($this);
1460 1463
1461 1464 // Conditionally set the clear_fields_on_submit value
1462 1465 $clear_fields_on_submit = king_addons_freemius()->can_use_premium_code__premium_only()
1463 1466 ? esc_attr($settings['clear_fields_on_submit'])