默认的WooCommerce行为可能会影响你的网站打开速度,如果您不需要使用这些特定的功能,那么可以考虑禁用掉这些没有必要的功能。
例如,我在说新的“特色图像缩放”,由WooCommerce介绍了几个更新之前。如果您的客户不需要这样的话呢?你如何禁用它?
那么像往常一样,这可以用几条PHP行完成!现在去禁用所有你不需要的东西
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>