Skip to content

Feed Generation

  1. Go to WPify → WPify Woo > XML Feed Heureka
  2. Scroll all the way down
  3. Click the Generate feed button

For automatic feed generation at regular intervals, set up a cron that will trigger the URL address found in the description below the feed generation button.

The module provides two REST API endpoints for feed generation:

EndpointDescription
/wp-json/wpify-woo/v1/feed/generate/heurekaGenerates the entire feed at once
/wp-json/wpify-woo/v1/feed/chunk-generate/heurekaGenerates the feed in chunks (recommended for large catalogs)

Adjusting the Number of Products per Process

Section titled “Adjusting the Number of Products per Process”

Feed generation is divided into separate processes of 100 products each to prevent issues with server time limits per process.

This limit can be adjusted using a snippet:

add_filter('wpify_woo_feed_products_per_page', function() {
return 20;
});

In this example, feed generation is divided into processes of 20 products each.