我在我的WooCommerce Addon中使用了prettyphoto,它是从WooCommerce文件中加载的,但在v 3.0中,WooCommerce删除了漂亮的照片,并开始使用其他脚本,如
我想将这些捆绑的脚本排队,但找不到这样做的功能。任何帮助将不胜感激。
由于
答案 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 您可以启用/禁用删除/评论相关线的功能。