BalticXML Wordpress Plugin - Rating, Reviews, Demo & Download
Plugin Description
BalticXML is a lightweight WooCommerce extension that exports your product catalogue as XML feeds compatible with three Latvian price comparison engines:
- salidzini.lv – official spec
- kurpirkt.lv – official spec
- ceno.lv – official spec
All three feeds are generated and served from the same plugin at separate URLs, for example:
https://yoursite.com/salidzini-feed.xmlhttps://yoursite.com/kurpirkt-feed.xmlhttps://yoursite.com/ceno-feed.xml
Each feed is cached on disk for fast delivery and regenerated automatically via WP-Cron.
Features
- Three independent XML feeds (salidzini.lv, kurpirkt.lv, ceno.lv) at their own URLs
- Per-format cache files and a single shared WP-Cron schedule
- Manual “Regenerate Feed Now” button rebuilds all feeds at once
- Includes simple, variable (per-variation) and external products
- Full category breadcrumb path (
Parent > Child > Subchild) - Automatic brand / manufacturer detection from common taxonomies and attributes
- Automatic EAN/GTIN detection from common meta keys
- Out-of-stock filter
- Customizable feed slug per portal
- HPOS (High-Performance Order Storage) compatible
- Translation ready
Feed Structures
salidzini.lv:
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product>
<name><![CDATA[Brand Model 12345]]></name>
<link>https://yoursite.com/product/...</link>
<price>99.99</price>
<category_full><![CDATA[Parent > Child]]></category_full>
<category_link>https://yoursite.com/category/...</category_link>
<image>https://yoursite.com/wp-content/uploads/...</image>
<in_stock>5</in_stock>
<brand><![CDATA[Brand]]></brand>
<model><![CDATA[Model X]]></model>
<color><![CDATA[Black]]></color>
<mpn>ABC-123</mpn>
<ean>1234567890123</ean>
</product>
</products>
kurpirkt.lv:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item>
<name>Apple iPhone 13 PRO 512GB black</name>
<link>https://yoursite.com/product/...</link>
<price>1200.59</price>
<image>https://yoursite.com/wp-content/uploads/...</image>
<manufacturer>Apple</manufacturer>
<category>Mobilie telefoni</category>
<category_full>Sakaru līdzekļi > Mobilie telefoni</category_full>
<category_link>https://yoursite.com/category/...</category_link>
<in_stock>5</in_stock>
<delivery_cost_riga>2.25</delivery_cost_riga>
<used>0</used>
</item>
</root>
ceno.lv:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item>
<name>Huawei P40 Pro Melns</name>
<link>https://yoursite.com/product/...</link>
<price>849.99</price>
<price_sale>799.99</price_sale>
<image>https://yoursite.com/wp-content/uploads/...</image>
<manufacturer>Huawei</manufacturer>
<model>P40 pro</model>
<category>Mobilie telefoni</category>
<category_full>Telefoni-plansetdatori > Mobilie telefoni</category_full>
<category_link>https://yoursite.com/category/...</category_link>
<in_stock>12</in_stock>
<ean>6901443378944</ean>
<used>0</used>
<delivery_cost_riga>2.99</delivery_cost_riga>
<delivery_latvija>5.99</delivery_latvija>
<delivery_latvijas_pasts>1</delivery_latvijas_pasts>
<delivery_omniva>1.50</delivery_omniva>
<delivery_days_riga>4</delivery_days_riga>
<delivery_days_latvija>6</delivery_days_latvija>
</item>
</root>


