WooCommerce 3.0排列捆绑的脚本和样式,缩放,photoswipe

时间:2017-05-22 15:43:29

标签: woocommerce

我在我的WooCommerce Addon中使用了prettyphoto,它是从WooCommerce文件中加载的,但在v 3.0中,WooCommerce删除了漂亮的照片,并开始使用其他脚本,如

  • flexslider
  • 变焦
  • photoswipe

我想将这些捆绑的脚本排队,但找不到这样做的功能。任何帮助将不胜感激。

由于

1 个答案:

答案 0 :(得分:0)

我不确定我是否完全理解你的问题,但如果我这样做可能会有所帮助:

function.php 中的

添加以下行:

add_action( 'after_setup_theme', 'photoswipe_gallery_setup' );

function photoswipe_gallery_setup() {
  add_theme_support( 'wc-product-gallery-zoom' );
  add_theme_support( 'wc-product-gallery-lightbox' );
  add_theme_support( 'wc-product-gallery-slider' );
}

这将支持PhotoSwipe 您可以启用/禁用删除/评论相关线的功能。

credits