Answer the question
In order to leave comments, you need to log in
How to make carousel from youtube video?
You need to make a carousel from YouTube videos. Through ACF, I created a repeater and put the oEmbed field in it and in the admin panel I put links to the video I need. This is how I output:
<div class="owl-carousel owl-theme youtube-slider">
<?php if( have_rows('var_youtube') ): ?>
<?php while( have_rows('var_youtube') ): the_row(); ?>
<div>
<?= get_sub_field('var_video')?>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
$('.youtube-slider').owlCarousel({
loop: true,
margin: 150,
nav: true,
navText: navText,
dots: false,
lazyLoad: true,
items:1,
responsive:{
768:{
items:2
}
}
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question