我在网上商店使用Woocommerce。我添加了大约300种版本的产品,但是当我尝试切换属性时,它的运行速度非常慢。但是,当我尝试仅添加大约10个变体时,它的好处。我该如何解决,请帮忙。 我的网站链接 https://www.coversfeed.com/product/cute-bear-blue-phone-case/
答案 0 :(得分:0)
无需安装插件即可获得少量代码。您还可以通过添加过滤器挂钩woocommerce_ajax_variation_threshold
解决问题。
请在functions.php文件的当前活动主题中添加以下代码。
/**
* Fix for issue where too many variations causes the front end to not pre-load
* all variations and rely on AJAX.
*/
function custom_wc_ajax_variation_threshold_resolved( $qty, $product )
{
return 100;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold_resolved', 10, 2 );