I cannot for the life of me get rid of them:
dots: false,
Doesn't do anything?
I cannot for the life of me get rid of them:
dots: false,
Doesn't do anything?
Since you are using OwlCarousel version 1, please check out their documentation. This also says pagination (dots) can be turned off with:
pagination: false,
The dots: false, is for version 2. See this GitHub issue which is asking the same question.
<pre>
<code>
    <script type="text/javascript">
        $(document).ready(function(){
            $('.owl-carousel').owlCarousel({
                dots: false,
            });
        });
    </script>
</code>
</pre>
Try as below:
$('.owl-carousel').owlCarousel({
  nav: false,
  dots: false,
.....
..
For version 2 you can use the dots property.
$(document).ready(function(){
  $('.owl-carousel').owlCarousel({
    // ... other properties
    dots: false,
    // ... other properties
  });
});
Try as below:
<script type="text/javascript" >
        require(['jquery','owlcarousel'], function($){
            $(document).ready(function() {
               $('#feature_product').owlCarousel({
                    margin: 10,
                    dots:false,
                    loop: true,
                    autoplay: true,
                    autoplayTimeout:300,
                    slideSpeed : 200,
                    responsiveClass:true,
                    responsive:{
                        0:{
                            items:1,
                            nav:true
                        },
                        600:{
                            items:3,
                            nav:true
                        },
                        1000:{
                            items:5,
                            nav:true,
                            loop:true
                        },
                    }
                });
              });
        });
    </script> 
$(".carousel1").owlCarousel({ margin: 20, loop: true, autoplay: true, autoplayTimeout: 2000, autoplayHoverPause: true, nav: false, dots: false, responsive: { 0:{ items:1, nav: false }, 600:{ items:2, nav: false }, 1000:{ items:3, nav: false } } });