Feed Generation
Manual Feed Generation
Section titled “Manual Feed Generation”- Go to WPify → WPify Woo > XML Feed Heureka
- Scroll all the way down
- Click the Generate feed button
Automatic Feed Generation
Section titled “Automatic Feed Generation”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.
REST API Endpoints
Section titled “REST API Endpoints”The module provides two REST API endpoints for feed generation:
| Endpoint | Description |
|---|---|
/wp-json/wpify-woo/v1/feed/generate/heureka | Generates the entire feed at once |
/wp-json/wpify-woo/v1/feed/chunk-generate/heureka | Generates 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.