With this plugin you can create an XML feed for Ceneo.pl.
Ceneo.pl is a price comparison website that enables its users to filter through a variety of products in many shops.
By providing an XML file with your store's products, you can list them in this platform.
This plugin requires a commercial license purchasable through the Craft Plugin Store.
This plugin requires Craft CMS 3.1.0 or later.
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require kerosin/ceneo-xml-feed-pro
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Ceneo Xml Feed Pro.
Open the Craft admin and go to Settings → Plugins → Ceneo Xml Feed Pro → Settings.
http://example.com/ceneo-xml-feed-pro/feed/entries
To save the output to a file add save
query param to the url:
http://example.com/ceneo-xml-feed-pro/feed/entries?save
The file will be saved in the following path:
http://example.com/ceneo-xml-feed-pro/entries-SITE_HANDLE.xml
Replace SITE_HANDLE
in the url with a real site handle.
http://example.com/ceneo-xml-feed-pro/feed/products
To save the output to a file add save
query param to the url:
http://example.com/ceneo-xml-feed-pro/feed/products?save
The file will be saved in the following path:
http://example.com/ceneo-xml-feed-pro/products-SITE_HANDLE.xml
Replace SITE_HANDLE
in the url with a real site handle.
{% set entries = craft.entries.section('foo').all() %}
{{ craft.ceneoXmlFeedPro.generateFeed(entries) }}
{% set products = craft.products.all() %}
{{ craft.ceneoXmlFeedPro.generateFeed(products) }}
Brought to you by kerosin