I'm looking for a way to hide the Owl Carousel custom navigation, and to stop the "loop" functionality if there is only one item.
$('.owl-carousel').owlCarousel({
loop: true,
items: 1,
});
owl = $('.owl-carousel').owlCarousel();
$(".prev").click(function () {
owl.trigger('prev.owl.carousel');
});
$(".next").click(function () {
owl.trigger('next.owl.carousel');
});