0

我正在使用WooCommerceWooCommerce Google产品提要插件。

无论如何要编写一个函数,它会遍历我所有的产品,如果产品的价格低于$25,它会检查"hide from feed"产品吗?

任何帮助,将不胜感激

4

2 回答 2

1

编辑插件文件:woocommerce_gpf_frontend.php

就在之前return apply_filters( 'woocommerce_gpf_exclude_product', $excluded, $woocommerce_product->id, $this->feed_format );

添加这行代码:

// hide products of $25 and lower, exclude from product feed. 

    if ( $woocommerce_product->get_regular_price() < 25 ){
                $excluded = true;
            }

嘭嘭!

于 2016-01-04T19:35:49.623 回答
0

您可以根据自己的目的使用 WooCommerce Product Feed Pro 插件的产品过滤功能。这是链接https://webappick.com/plugin/woocommerce-product-feed-pro/

于 2016-08-18T17:31:10.547 回答