Include invisible products in feed
-
One of our clients is using invisible products in their shop for products which are only sold through affiliates. This was working fine with your plugin before v2.1.0.
Starting from v2.1.0 (probably in response to this support request), you added a condition in the feed creation that skips all invisible products (webappick-product-feed-for-woocommerce/trunk/includes/classes/class-woo-feed-products.php, line 97/104):
- old:
if(!is_object($product)){
- new:
if(!is_object($product)|| !$product->is_visible()){
Can you make it an option whether or not to include invisible products in the feed, since there seem to be use cases for both options?
- old:
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Include invisible products in feed’ is closed to new replies.