Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello,
is it possible, that the codeless slider on startpage ist not only going from 1 to 2 to 3 and then stop at the end?
I like, that it starts from beginning when it is at the end. 1 – 2 – 3 – 1 – 2 – 3 and so on.
And it it is at the end and i click on next it should start at the beginning. Like the most other sliders do.
Please apologize my bad english.
Best,
Sebastian
Hello,
To make the slider scroll infinitely (not stop at the last slide), please go to file js/main.js and find these lines:
$('.codeless_slider').imagesLoaded(function(){
$loading.css('display', 'none');
var c_speed = $('.codeless_slider').data('speed');
if(c_speed == 'undefined')
c_speed = 800;
codelessSlider = new Swiper('.codeless_slider',{
slidesPerView: slide_per_view,
paginationAsRange: false,
loop: false,
Edit out the “loop: false,” to “loop: true,”
Save changes and refresh page.
Best regards!
You must be logged in to reply to this topic.