Woocommerce Google 产品 Feed
Woocommerce Google Product Feed
我正在使用 WooCommerce
和 WooCommerce Google
产品 Feed 插件。
有没有写一个函数,它会遍历我所有的产品,如果产品的价格低于 25 美元,它会勾选 "hide from feed"
在产品上?
如有任何帮助,我们将不胜感激
编辑插件文件:woocommerce_gpf_frontend.php
就在return apply_filters( 'woocommerce_gpf_exclude_product', $excluded, $woocommerce_product->id, $this->feed_format );
之前
添加这行代码:
// hide products of and lower, exclude from product feed.
if ( $woocommerce_product->get_regular_price() < 25 ){
$excluded = true;
}
砰砰!
您可以根据自己的目的使用 WooCommerce Product Feed Pro 插件的产品过滤功能。这里是linkhttps://webappick.com/plugin/woocommerce-product-feed-pro/
我正在使用 WooCommerce
和 WooCommerce Google
产品 Feed 插件。
有没有写一个函数,它会遍历我所有的产品,如果产品的价格低于 25 美元,它会勾选 "hide from feed"
在产品上?
如有任何帮助,我们将不胜感激
编辑插件文件:woocommerce_gpf_frontend.php
就在return apply_filters( 'woocommerce_gpf_exclude_product', $excluded, $woocommerce_product->id, $this->feed_format );
添加这行代码:
// hide products of and lower, exclude from product feed.
if ( $woocommerce_product->get_regular_price() < 25 ){
$excluded = true;
}
砰砰!
您可以根据自己的目的使用 WooCommerce Product Feed Pro 插件的产品过滤功能。这里是linkhttps://webappick.com/plugin/woocommerce-product-feed-pro/