Viewing 1 replies (of 1 total)
  • Hi there,

    It’s possible to force the min and max no. of slides with some custom code:

    function metaslider_change_filmstrip_parameters($params, $slider_id, $settings) {
    
         if ( $slider_id == XXX ) { // replace XXX with your slideshow ID
             $params['itemMargin'] = 0;
             $params['maxItems'] = 5;
             $params['minItems'] = 5;
         }
    
         return $params;
    }
    add_filter('metaslider_flex_slider_filmstrip_parameters', 'metaslider_change_filmstrip_parameters', 10, 3);

    The above code if placed in the theme’s functions.php file will try to force the carousel to display 5 images at once.

    Thanks,
    Dave

Viewing 1 replies (of 1 total)

The topic ‘Carousel step’ is closed to new replies.