How to autoplay the slider on homepage?

  1. Home
  2. Docs
  3. Khore
  4. Frequently Asked Question...
  5. How to autoplay the slider on homepage?

How to autoplay the slider on homepage?

1) Please activate child theme as per the below tutorial. Otherwise you will lose the code changes when you upgrade the theme.

How to activate a child theme.

2) Copy jquery.main.js from khore/js folder and paste in to the child theme. (khore-child/js)

3) Open child theme functions.php and add the following:

<?php

add_action(‘init’, ‘removeScripts’);

function removeScripts(){

wp_deregister_script(‘khore-script-main’);
}
add_action( ‘wp_enqueue_scripts’, ‘script_enqueuer’ );

function script_enqueuer() {
wp_register_script( ‘khore-script-main’, get_stylesheet_directory_uri().’/js/jquery.main.js’,array(‘jquery’), false, false);

}

?>

4) Open jquery.main.js from child theme and search for the following:

onInit: function (swiper) {

5) Just above that line please add the following:

autoplay:2000,

6) Update the file.

Was this article helpful to you? Yes 1 No 3