相关产品仅限于WooCommerce 3中的标签,而不是类别

问题描述 投票:0回答:1

我试图与之相反:Related Products only by categories, not by tags in WooCommerce 3

我想仅根据产品标签显示相关产品,而不是按类别显示。

到目前为止,我在我的孩子主题下的function.php中有这个:

add_filter( 'woocommerce_get_related_product_cat_terms', function( $term_ids, $product_id ){
    return array();
}, 10, 2 );

但它不起作用。

任何帮助是极大的赞赏。

php wordpress woocommerce tags categories
1个回答
0
投票

在woocommerce版本3.2.x中,我首先测试了此代码,仅显示基于产品标签的相关产品:

add_filter( 'woocommerce_product_related_posts_relate_by_category', '__return_false' );

代码位于活动子主题(或活动主题)的function.php文件中。

它完美无缺。

我已经测试了你的代码,它也有效!

因此,您的安装或设置中存在与您的问题相关的内容。

© www.soinside.com 2019 - 2024. All rights reserved.