This is the change i made
Code before teachers section not auto rotating.
//calling Brand Crousel
$(".teachers-wrapper").owlCarousel({
loop:true,
margin:40,
responsiveClass:true,
responsive:{
0:{
items:1,
nav:true,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"]
},
600:{
items:3,
nav:false,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"]
},
1000:{
items:4,
nav:true,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
loop:true
}
}
});
Code for rotating carousel auto in teacher's section which can be edited in wp-content >> themes >> education >> assets >> js >> webful.js
//calling Brand Crousel
$(".teachers-wrapper").owlCarousel({
loop:true,
margin:40,
responsiveClass:true,
autoplay:5000,
responsive:{
0:{
items:1,
nav:true,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"]
},
600:{
items:3,
nav:false,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"]
},
1000:{
items:4,
nav:true,
navText:["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
loop:true
}
}
});
If you cannot see the auto rotating teachers please refresh your cache. Also note this item was out of support cause theme does not support auto rotating teachers section however i did it for you thanks.