Home › Forums › Pro Support › Carousel Vertical Tagged: vertical carousel This topic has 4 replies, 3 voices, and was last updated 2 years, 9 months ago by elvin. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts December 2, 2020 at 7:07 am #23629 AndreasParticipant Hi, i need to create a carousel with post but not horizontal but vertical instead. December 2, 2020 at 8:29 am #23635 David BeckwithParticipant Hi there, not sure how this will behave but the carousel uses Slick Slider which has vertical swiping. You can try enabling that with this PHP snippet: add_filter( 'wpsp_carousel_args', function( $args ) { $args['verticalSwiping'] = true; return $args; } ); December 2, 2020 at 10:19 am #23639 AndreasParticipant Hi David, I am going to try that and give you feedback! Thank you a lot! December 3, 2020 at 6:13 am #23696 AndreasParticipant Hallo David, just tried this on my functions.php and unfortunately is not doing anything different on the slider. December 4, 2020 at 12:35 am #23755 elvinModerator Hi, “verticalSwiping” is for tablets and mobile devices. For desktops add “vertical”. That said, try this: add_filter( 'wpsp_carousel_args', function( $args ) { $args['verticalSwiping'] = true; $args['vertical'] = true; return $args; } ); Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In