Product feeds sync your product catalog with Cevoid, enabling product tags on posts and product-based galleries. Use product feeds when you’re not using Shopify or WooCommerce, or when you need custom catalog data.
Navigate to Settings -> Products & Markets to configure your feeds.
Add a product feed
- Navigate to Settings -> Products & Markets
- Edit an existing market or create a new one
- Scroll to the Product feed section
- Click Add product feed
- Enter the URL to your product feed
- Select the file format (XML, CSV, or TSV)
- If password-protected, click Authentication and enter credentials
- Click Connect feed
- Map each field to the corresponding value in your feed
- Click Create feed
Field mapping
Once connected, a preview of your feed displays. Map your feed fields to Cevoid’s values.
| Field | Required | Description | Used for | |
|---|
| ID | ✓ | Unique identifier for each product variant | Connects products across markets so you only tag once | |
| Product title | ✓ | The product name | Displayed in product tags | |
| Link | ✓ | URL to the product page | Where visitors go when clicking a product tag | |
| Product price | ✓ | Price. With or without currency symbol; symbol is removed at import. | Displayed in product tags | |
| Image link | ✓ | Primary product image | Displayed in product tags | |
| Item group ID | | Groups product variants together | Product tagging and product page gallery fallback | |
| Additional image link | | Secondary product image | Shown on hover over product tag | |
| Sale price | | Discounted price if on sale | Displayed alongside regular price | |
| Availability | | Stock status | Hide out-of-stock products | |
| Category | | Hierarchical categories Supported seperators: `, / | > < →` | Tagging filter, Library filter, category page galleries |
| Collection(s) | | The collections the product belongs to. Can be send as one tag, or seperate once for grouped collections | Tagging filter, Library filter, collection page galleries | |
| Variant options | | Options like color and size One tag per variant option. | Variant selection when tagging, product page gallery fallback | |
Item group ID is strongly recommended. It groups product variants together for better tagging and fallback behavior. If you don’t provide Item group ID, Cevoid analyzes URL paths to create groupings automatically
Product feed example
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product>
{/* Required fields */}
<id>1001-BLK-M</id>
<product_title>Classic Cotton T-Shirt</product_title>
<link>https://cevoid.com/product/classic-cotton-t-shirt</link>
<product_price>29.99</product_price>
<image_link>https://cdncevoid.com/image/classic-tee-black-front.jpg</image_link>
{/* Optional fields */}
<item_group_id>1001</item_group_id>
<additional_image_link>https://cdncevoid.com/image/classic-tee-black-lifestyle.jpg</additional_image_link>
<sale_price>19.99</sale_price>
<availability>in_stock</availability>
<category>Apparel > Tops > T-Shirts</category>
{/* Collections (Optional) */}
<gender>Women, Unisex</gender>
<styles>Casual, Streetwear, Minimalist, Everyday</styles>
{/* Variant options (Optional) */}
<size>M</size>
<color>Black</color>
</product>
</products>
FAQ
What format should feeds be in?
Google Shopping feed schema is most common, but we support custom field names that you map during setup.
What file formats are supported?
XML, CSV, or TSV.
Can we have multiple feeds per market?
Yes. Add multiple feeds if your catalog is split across files. Usually one is enough.
What if we modify our feeds?
All fields except product ID can be remapped freely. Changes apply after the next product sync.
Product tags are connected to the product ID. Contact Cevoid support before remapping the ID field.