Короче, для тех кто видит этот пост. Разобрался со второй версией =)
Вот код:
var owl = $("#team__slider").on('initialized.owl.carousel changed.owl.carousel', function(e) {
var carousel = e.relatedTarget;
if ( carousel.current() + 1 === carousel.items().length) {
setTimeout(function () {
var dots = $('#team__slider .owl-dot');
$(dots[0]).trigger('click');
}, 7000);
}
}).owlCarousel({
navText: ['<svg xmlns="http://www.w3.org/2000/svg" width="15" height="24"><path d="M2.8 0L0 2.8 9.3 12 0 21.2 2.8 24 15 12 2.8 0z"/></svg>','<svg xmlns="http://www.w3.org/2000/svg" width="15" height="24"><path d="M2.8 0L0 2.8 9.3 12 0 21.2 2.8 24 15 12 2.8 0z"/></svg>'],
responsiveClass:true,
loop:false,
nav: true,
dots: true,
items: 1,
autoplayTimeout:7000,
autoplay:true
});