| @@ -69,12 +69,8 @@ | ||
| 69 | 69 | public function get_keywords() { |
| 70 | 70 | return [ 'sidebar', 'widget' ]; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - public function has_widget_inner_wrapper(): bool { | |
| 74 | - return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' ); | |
| 75 | - } | |
| 76 | - | |
| 77 | 73 | /** |
| 78 | 74 | * Register sidebar widget controls. |
| 79 | 75 | * |
| 80 | 76 | * Adds different input fields to allow the user to change and customize the widget settings. |
| @@ -106,17 +102,14 @@ | ||
| 106 | 102 | 'label' => esc_html__( 'Sidebar', 'elementor' ), |
| 107 | 103 | ] |
| 108 | 104 | ); |
| 109 | 105 | |
| 110 | - $this->add_control( | |
| 111 | - 'sidebar', | |
| 112 | - [ | |
| 113 | - 'label' => esc_html__( 'Choose Sidebar', 'elementor' ), | |
| 114 | - 'type' => Controls_Manager::SELECT, | |
| 115 | - 'default' => $default_key, | |
| 116 | - 'options' => $options, | |
| 117 | - ] | |
| 118 | - ); | |
| 106 | + $this->add_control( 'sidebar', [ | |
| 107 | + 'label' => esc_html__( 'Choose Sidebar', 'elementor' ), | |
| 108 | + 'type' => Controls_Manager::SELECT, | |
| 109 | + 'default' => $default_key, | |
| 110 | + 'options' => $options, | |
| 111 | + ] ); | |
| 119 | 112 | |
| 120 | 113 | $this->end_controls_section(); |
| 121 | 114 | } |
| 122 | 115 | |