Viewing 1 replies (of 1 total)
  • I ran across same problem and solved it that way until this feature might be available someday:

    In your functions.php:

    
    add_action('wp_footer', function() {
    	  print('<script type="text/javascript">
    	  	(function($) {
    			$(".wp-block-cb-carousel").slick("slickSetOption", "fade", true);
    			})(jQuery);
    		</script>');
    	}, 99);
    

    This way you can change the settings of the used Slick-Slider library:
    https://kenwheeler.github.io/slick/

    You can change the selector .wp-block-cb-carousel to a more specific selector if you want.

Viewing 1 replies (of 1 total)
  • The topic ‘Fade Effect’ is closed to new replies.