Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created July 28, 2020 15:36
Show Gist options
  • Save farookibrahim/b9a379a174ca45a893d30dc6a6bb0671 to your computer and use it in GitHub Desktop.
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
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