WOOCOMMERCE如何禁用放大功能

默认的WooCommerce行为可能会影响你的网站打开速度,如果您不需要使用这些特定的功能,那么可以考虑禁用掉这些没有必要的功能。

例如,我在说新的“特色图像缩放”,由WooCommerce介绍了几个更新之前。如果您的客户不需要这样的话呢?你如何禁用它?

那么像往常一样,这可以用几条PHP行完成!现在去禁用所有你不需要的东西

WOOCOMMERCE如何禁用放大功能
禁用缩放,画廊和灯箱@ WooCommerce单一产品页面

PHP片段:禁用缩放

<pre> /** * @snippet Remove Zoom, Gallery @ Single Product Page * @how-to Watch tutorial @ https://businessbloomer.com/?p=19055 * @sourcecode https://businessbloomer.com/?p=72911 * @author Rodolfo Melogli * @testedwith WooCommerce 3.1.2 */ add_action( 'after_setup_theme', 'bbloomer_remove_zoom_lightbox_theme_support', 99 ); function bbloomer_remove_zoom_lightbox_theme_support() { remove_theme_support( 'wc-product-gallery-zoom' ); remove_theme_support( 'wc-product-gallery-lightbox' ); remove_theme_support( 'wc-product-gallery-slider' ); }</pre>

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/wp/260054.html

(0)
上一篇 2022年5月23日 10:29
下一篇 2022年5月23日 10:33

相关推荐

发表回复

登录后才能评论