-
-
Hello,
I have a problem that if I create 3 slides in Codeless slider after 3rd slide the “Next” arrow is still visible, but does not do anything. I need it either to loop or disappear on the last slide. In themeforest comments section I was told to write to you with ftp logins etc, but I guess you can just send me edited files? Thanks
- This topic was modified 8 years, 2 months ago by Kris. Reason: html tags
-
Hello,
We will need at least the site url to give it a closer look at the issue. You can send us your wp credentials, just update the profile user information for that. Read this aricle for more information.
We don’t send the edited files, first we take a look at the problem you are having and reply to you the answer. If needed we make those modifications on your webpage when we have the credentials( we can also modify the theme files if you can’t do it by yourself). But in your case we will need for now only your wp credentials.
Let us know.Best regards!
-
-
Hello,
To make the third slide arrow to loop, go to your theme files \wp-content\themes\tower\js and open main.js. Here find these lines
$('.codeless_slider').imagesLoaded(function(){ $loading.css('display', 'none'); var c_speed = $('.codeless_slider').data('speed'); if(c_speed == 'undefined') c_speed = 10000; codelessSlider = new Swiper('.codeless_slider',{ slidesPerView: slide_per_view, paginationAsRange: false, loop: false, touchRatio: 0.7, autoplay: c_speed, speed: 800, noSwiping: true, updateOnImagesReady:true,
Replace them with these lines:
$('.codeless_slider').imagesLoaded(function(){ $loading.css('display', 'none'); var c_speed = $('.codeless_slider').data('speed'); if(c_speed == 'undefined') c_speed = 10000; codelessSlider = new Swiper('.codeless_slider',{ slidesPerView: slide_per_view, paginationAsRange: false, loop: true, touchRatio: 0.7, autoplay: c_speed, speed: 800, noSwiping: true, updateOnImagesReady:true,
Save file and reload page.
Let us know.Best regards!
-
-
You must be logged in to reply to this topic.