Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi Neviolami. Welcome to the Hueman forum. Activating the slider movement requires a modification to one of the theme files. If you don’t currently have a child theme I’d recommend you install one first. You can download one from within the theme (Theme Options, Help tab upper right). Then copy /inc/featured.php from the parent theme to /inc/featured.php in your child theme. In that file change the “slideshow” property from false to true:

    jQuery('#flexslider-featured').flexslider({
    	animation: "slide",
    	useCSS: false, // Fix iPad flickering issue
    	slideshow: true,
    	directionNav: true,
    	controlNav: true,
    	pauseOnHover: true,
    	slideshowSpeed: 7000,
    	animationSpeed: 400,
    	smoothHeight: true,
    	touch: false
    });

    If you’re interested you can see all the slider properties at the bottom of this page.

    Hello,

    Thanks for your kind of great support on free theme i like very much your agression of service i see you gives great support on forum to all users

    when i go on my dashboard and click on theme option and clcik on right corner help for child theme but there are not drop down or see any options for that please help me.

    @mayur1234 – that’s not really related to this topic. Please create a new topic. Thank you.

    @bdbrown – thanks for the slider fix (implemented here: )

    I’ve been reading through a lot of the Hueman threads and you do offer great support on a free theme. Thanks again.

    Hi Mike. Welcome to the Hueman forum. Thanks for the kind words. I’m not the theme author; just helping out others here in my spare time

    can you tell me clearly where the place that i go to change from false to true? thank you dear

    1. If you don’t have a child theme, create one:
    – In Theme Options click the Help tab in the upper righthand corner.
    – One of the options in the list is to download a sample child theme. This downloads the theme zip file to your local computer.
    – Install the new theme in your Admin panel by selecting Add New > Upload Theme > Choose File, then select the zip file you downloaded.
    – Activate the child theme.
    You’ll now have a pre-configured child theme with a style.css file and functions.php file to which you can add customizations.

    2. Create a /inc subfolder in your child theme.

    3. Copy /inc/featured.php from the parent theme to /inc/featured.php in your child theme.

    4. In that file in your child theme change the “slideshow” property from false to true:

    jQuery('#flexslider-featured').flexslider({
    	animation: "slide",
    	useCSS: false, // Fix iPad flickering issue
    	slideshow: true,  <------ change this from false to true
    	directionNav: true,
    	controlNav: true,
    	pauseOnHover: true,
    	slideshowSpeed: 7000,
    	animationSpeed: 400,
    	smoothHeight: true,
    	touch: false
    });

    5. Save the file.

    If you have more than one Featured Post the slider should run automatically.

    Really great THANK for your helping. I’ll follow your step by step. Thank #bdbrown

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How do I get the slider automatically move?’ is closed to new replies.