Created
July 28, 2020 15:36
-
-
Save farookibrahim/b9a379a174ca45a893d30dc6a6bb0671 to your computer and use it in GitHub Desktop.
Vodi - TV Show single "You may also like" section update columns in carousel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if( ! function_exists( 'vi_child_single_related_tv_shows_carousel_carousel_args' ) ) { | |
function vi_child_single_related_tv_shows_carousel_carousel_args( $args ) { | |
$args['slidesToShow'] = 7; | |
$args['slidesToScroll'] = 7; | |
return $args; | |
} | |
} | |
add_filter( 'vodi_template_single_related_tv_shows_carousel_carousel_args', 'vi_child_single_related_tv_shows_carousel_carousel_args' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment