WooCommerce Single Products编辑弹性滑块设置

时间:2017-09-22 作者:Remy Jacobs

对于我的Woocommerce项目,我正在寻找一种解决方案来编辑单个产品页面上的图像滑块。Woocommerce将滑块、缩放和灯箱功能添加到产品库中。这对我来说很好,但我想更改滑块部分的选项。

Woocommerce为此使用flexslider;http://flexslider.woothemes.com/ , 但由于flexslider已经由WooCommerce本身启动,因此我无法在之后更改选项。als没有选择杀死一个活动的flexslider并自己重新初始化它。

我想我可以通过删除类名选择器(.woocommerce-product-gallery\\uu image)来解决这个问题,这样滑块就不会自动工作,但这也会破坏缩放和lightbox的功能。

是否有其他解决方案可以更改产品库的flexslider选项?更具体地说;我正在尝试制作如下缩略图滑块:http://flexslider.woothemes.com/thumbnail-slider.html

1 个回复
SO网友:Devin Crossman

在对源代码进行了一点挖掘之后,我发现有一个名为woocommerce_single_product_carousel_options 可用于修改flex滑块选项的

例如:

function my_product_carousel_options($options) {
  $options[\'animation\'] = \'fade\';
  return $options;
}
add_filter("woocommerce_single_product_carousel_options", "my_product_carousel_options", 10);

结束