New Landing How can we help? Themeforest Theme Support Neighborhood Testimonial Slider Speed after new update

Viewing 4 posts - 1 through 4 (of 4 total)
  • #300896
    ThinkProfits
    Member
    Post count: 8

    Hello Swift Ideas Support,

    After updating the neighborhood theme to Version: 3.4.30, my testimonial speed is really fast. I’m hoping to make it 10000, but when I update it in the functions.js my website get’s an internal server. Can you help me take a look?

    Thanks!

    Attachments:
    You must be logged in to view attached files.
    #301129
    David Martin – Support
    Moderator
    Post count: 20834

    Can you screenshot the error you see? Changing the functions.js should have no effect on that.

    Thanks.

    #301231
    ThinkProfits
    Member
    Post count: 8

    Hi!

    Is the screenshot I provided the correct block of code to change the speed of the testimonial? If I recreate the error, the website will go down.

    Thanks!

    #301242
    David Martin – Support
    Moderator
    Post count: 20834

    The slider has ths class .content-slider so it should be the below. Performance Options need to be off when making these changes,

    jQuery('.content-slider').each(function() {
    	var sliderAnimation = jQuery(this).attr('data-animation');
    	var autoplay = jQuery(this).attr('data-autoplay');
    	autoplay = ((autoplay === "yes") ? true : false);
    	
    	jQuery(this).flexslider({
    		animation: sliderAnimation,              //String: Select your animation type, "fade" or "slide"
    		slideshow: autoplay,	//Boolean: Animate slider automatically
    		slideshowSpeed: 6000,           //Integer: Set the speed of the slideshow cycling, in milliseconds
    		animationDuration: 1000,			//Integer: Set the speed of animations, in milliseconds
    		smoothHeight: true,         
    		directionNav: true,             //Boolean: Create navigation for previous/next navigation? (true/false)
    		controlNav: false               //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage
    	});
    });
Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.