You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: force all the image in the horizontal scroller to load immediate… (#3672)
* fix: force all the image in the horizontal scroller to load immediately for height calculation
* fix: also remove lazy loading on carousel images
* fix: remove stackable_enable_carousel_lazy_loading setting
Copy file name to clipboardExpand all lines: src/editor-settings.php
-13Lines changed: 0 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -170,18 +170,6 @@ public function register_settings() {
170
170
)
171
171
);
172
172
173
-
register_setting(
174
-
'stackable_editor_settings',
175
-
'stackable_enable_carousel_lazy_loading',
176
-
array(
177
-
'type' => 'boolean',
178
-
'description' => __( 'Disables image lazy loading when using images inside carousel-type blocks to prevent space or layout issues .', STACKABLE_I18N ),
179
-
'sanitize_callback' => 'sanitize_text_field',
180
-
'show_in_rest' => true,
181
-
'default' => true,
182
-
)
183
-
);
184
-
185
173
register_setting(
186
174
'stackable_editor_settings',
187
175
'stackable_enable_text_highlight',
@@ -273,7 +261,6 @@ public function add_settings( $settings ) {
0 commit comments