Hello David,
How can i removed products feed without images.
thanks
jack
Hi David,
thanks. how can i remove entire feeds from the site.
jack
Hello Jack,
To remove an entire feed, simply delete it from your /feeds/ directory, and then go to your admin page where you will see the "De-register" link alongside the old filename. This will remove all the products from that feed from the database...
Cheers,
David.
Hello Jack,
Do you want remove entire feeds from your site; or do you only want to import products that have images?
If you want to restrict importing to products that have images, you need to modify includes/admin.php. Look for the following code starting at line 155:
/* check product record for minimum required fields */
if (!$record[$admin_importFeed["field_name"]] || !$record[$admin_importFeed["field_buy_url"]] || !$record[$admin_importFeed["field_price"]]) return;
...and change this to:
/* check product record for minimum required fields */
if (!$record[$admin_importFeed["field_image_url"]] || !$record[$admin_importFeed["field_name"]] || !$record[$admin_importFeed["field_buy_url"]] || !$record[$admin_importFeed["field_price"]]) return;
That will make images mandatory...
Cheers,
David.