我正在开发一个儿童主题的店面(WooCommerce)。在“产品”页面中,我会显示所有的产品图像。
但是用户仍然可以正确地输入,就像图像滑块仍然处于活动状态一样。
我想在手机上取消这个swype运动(当用户向左移动时,我希望产品图像不要移动)。
你能帮我做到这一点吗?
谢谢
发布于 2017-09-27 11:37:31
好的,我找到了解决方案,在functions.php中使用了以下代码:
add_action( 'after_setup_theme', 'remove_hemen_theme_support', 100 );
function remove_hemen_theme_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
remove_theme_support( 'wc-product-gallery-slider' );
}行remove_theme_support( 'wc-product-gallery-slider' );禁用滑块。
https://wordpress.stackexchange.com/questions/280448
复制相似问题