• I building a site and I wanted to lower the time it takes to transition between photos. Right now its at four seconds but I wanted to lower it to two or three. I looked through the functions.php file and some of the javascript files. I found some files that affect speed but when I change those files they don’t affect the home slideshow. What is the correct file to look for in changing the speed of the home page slider?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    to solve this issue follow the given bellow instructions:

    First of create a child-theme.

    after creating a “child-theme” copy the “home-slideshow.php” file from your core theme directory and paste into your “child-theme” directory.

    Now open it in any text editor and paste the given below line of code at the end of this file.

    <script>
    jQuery(‘.carousel’).carousel({
    interval: 5000
    })
    </script>

    and change the interval according to your requirement.

    Now save the changes.

    Thanks

    How do i create a child theme.

    I want to change the slider speed, i thought this should be able to be done inside home-slideshow.php

    Please advise

    Hi honeyibk,

    follow this link

    This will explain why you need to create a child theme and how can you achieve this.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Home Slideshow Speed’ is closed to new replies.