| @@ -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']) |