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.