Skip to content

Upgrading to v2

Upgrade a Legacy Carousel

  1. Open the post or page that contains the legacy Carousel Slider block.
  2. Select the legacy carousel block.
  3. In the block toolbar, click the block icon on the left.
  4. Choose Transform to Carousel Slider.

Your carousel settings are preserved during the upgrade, but the frontend markup and visual output will change in v2.

After Upgrading

Check the updated carousel layout and styling after the transform. If you added custom CSS for the legacy version, you may need to adjust it for v2.

Legacy Support

The legacy settings page has been retired from wp-admin.

If you previously saved legacy support settings, those saved values will continue to work. For new changes, use PHP filters in your theme's functions.php file or a custom plugin.

Available filters:

  • cb_carousel_block_setting_show_legacy_blocks
  • cb_carousel_block_setting_hide_legacy_notice
  • cb_carousel_block_setting_use_full_swiper_bundle

Example:

add_filter( 'cb_carousel_block_setting_show_legacy_blocks', '__return_true' );
add_filter( 'cb_carousel_block_setting_hide_legacy_notice', '__return_true' );
add_filter( 'cb_carousel_block_setting_use_full_swiper_bundle', '__return_true' );

Important

Legacy blocks are no longer actively supported. For best compatibility and future updates, upgrading to v2 is strongly recommended.