我正在使用WooCommerce
和WooCommerce Google
产品Feed插件。
无论如何都要编写一个能够通过我所有产品的功能,如果产品的价格低于 $ 25 ,它会检查产品上的"hide from feed"
吗?
任何帮助将不胜感激
答案 0 :(得分:0)
编辑插件文件: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;
}
砰砰!
答案 1 :(得分:0)
您可以使用WooCommerce Product Feed Pro插件的产品过滤功能。这是链接https://webappick.com/plugin/woocommerce-product-feed-pro/