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

    There are a few RTL issues that has been reported to the developers on Hueman GitHub.

    https://github.com/presscustomizr/hueman/issues/275

    https://github.com/presscustomizr/hueman/issues/320

    You can add on your findings to the relevant issue report.

    Thank you

    Thread Starter namnamir

    (@namnamir)

    Thanks.

    I found a solution for it. The problem occurs when “slide” as the animation value is used. I just changed it to “fade” and it works now ??

    I change this value in the following file:
    /wp-content/themes/hueman/parts/featured.php

    The original code was:

    $.when( $('#flexslider-featured').flexslider({
    	animation: "slide",
    	useCSS: false, // Fix iPad flickering issue
    	directionNav: true,
    	controlNav: true,
    	pauseOnHover: true,
    	animationSpeed: 400,
    	smoothHeight: true,
    	touch: <?php echo apply_filters('hu_flexslider_touch_support' , true); ?>,
    	slideshow: <?php echo hu_is_checked('featured-slideshow') ? 'true' : 'false'; ?>,
    	slideshowSpeed: <?php echo hu_get_option('featured-slideshow-speed', 5000); ?>,
    }) )

    And after the change, it was changed to this:

    $.when( $('#flexslider-featured').flexslider({
    	animation: "fade",
    	useCSS: false, // Fix iPad flickering issue
    	directionNav: true,
    	controlNav: true,
    	pauseOnHover: true,
    	animationSpeed: 400,
    	smoothHeight: true,
    	touch: <?php echo apply_filters('hu_flexslider_touch_support' , true); ?>,
    	slideshow: <?php echo hu_is_checked('featured-slideshow') ? 'true' : 'false'; ?>,
    	slideshowSpeed: <?php echo hu_get_option('featured-slideshow-speed', 5000); ?>,
    }) )

    The following link shows the properties for FlexSlider which has been used in Huemen theme:
    https://github.com/woocommerce/FlexSlider/wiki/FlexSlider-Properties

    • This reply was modified 8 years, 1 month ago by namnamir.
    • This reply was modified 8 years, 1 month ago by namnamir.
    • This reply was modified 8 years, 1 month ago by namnamir.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Slider not working on RTL site’ is closed to new replies.