Woocommerce 中的导航箭头 3.x 产品库滑块

Navigation arrows in Woocommerce 3.x product gallery slider

有人能够在新的 woocommerce 滑块中为 Next/Prev 幻灯片添加导航箭头吗?

mobile/table 上的缩略图导航很棒,但对于桌面用户来说也有箭头将是一个梦想!主产品图片上的箭头优于灯箱。你会明白为什么在我们的网站上: http://52.56.199.58/collection/bedroom/giorgetti-syn-bedside-table/

这似乎是 Woocommerce 忘记的一个简单而明显的选择。非常感谢任何帮助或指导。

干杯

您可以通过连接到 'woocommerce_single_product_carousel_options' 过滤器来更新 WooCommerce V3 中的 Flexslider 选项。因此,为了启用导航箭头,'directionNav' 选项应该设置为 'true'。

将此示例函数放入您的 functions.php 文件中,您应该可以开始了:

// Update WooCommerce Flexslider options

add_filter( 'woocommerce_single_product_carousel_options', 'ud_update_woo_flexslider_options' );

function ud_update_woo_flexslider_options( $options ) {

    $options['directionNav'] = true;

    return $options;
}
ul.flex-direction-nav {
    position: absolute;
    top: 30%;
    z-index: 99999;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0px;
    list-style: none;}

li.flex-nav-prev {float: left;}
li.flex-nav-next {float: right;}
a.flex-next {visibility:hidden;}
a.flex-prev {visibility:hidden;}
a.flex-next::after {visibility:visible;content: '\f105';
    font-family: FontAwesome;margin-right: 10px;font-size: 70px;    }
a.flex-prev::before {
    visibility:visible;
    content: '\f104';
    font-family: FontAwesome;    margin-left: 10px;font-size: 70px;}

woocommerce 3.5.3 的更多测试值

add_filter('woocommerce_single_product_carousel_options', 'ud_update_woo_flexslider_options');
function ud_update_woo_flexslider_options($options) {
      // show arrows
      $options['directionNav'] = true;
      $options['animation'] = "slide";

      // infinite loop
      $options['animationLoop'] = true;

      // autoplay (work with only slideshow too)
      $options['slideshow'] = true;
      //$options['autoplay'] = true;

      // control par texte (boolean) ou bien par vignettes
      // $options['controlNav'] = true;
      //$options['controlNav'] = "thumbnails";

      // $options['mousewheel'] = true;

      return $options;
  }