Related products - what are they?
*Related Products* are additional products that are offered along with the main product to:
- add it,
- improve use,
- increase convenience,
- increase the average check. **
When adding the main product to the cart, the system will prompt the user to select related products from the list.
Automatic addition of related products:
In order to add related products via XML/JSON files, you need to add additional fields to the file.
Groups of related products are created for products with the following structure:
XML:
<associated_products>
<associated_product>
<id>associated_product_id</id>
<associated_product>
<id>associated_product_id</id>
</associated_products>
JSON:
{
"associated_products": [
{
"id": "associated_product_id"
},
{
"id": "associated_product_id"
}
"id": "associated_product_id"
}
]
}