Hi @nims,
The?Schema – All In One Schema Rich Snippets?plugin currently supports adding schema for only?one product per page. Unfortunately, it does not allow multiple?Product Schema?entries on a single page.
However, if you need to add schema for all three photography packages on the same page, you can manually insert?custom JSON-LD markup?using a?Custom HTML block?or a code snippet plugin. Here’s an example:
Here’s your code displayed in a proper code block:
html
Copy
Edit
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListElement": [
{
"@type": "Product",
"name": "Basic Photography Package",
"description": "1-hour session, 10 edited photos",
"offers": {
"@type": "Offer",
"price": "199",
"priceCurrency": "USD"
}
},
{
"@type": "Product",
"name": "Standard Photography Package",
"description": "2-hour session, 25 edited photos",
"offers": {
"@type": "Offer",
"price": "399",
"priceCurrency": "USD"
}
},
{
"@type": "Product",
"name": "Premium Photography Package",
"description": "3-hour session, 50 edited photos",
"offers": {
"@type": "Offer",
"price": "599",
"priceCurrency": "USD"
}
}
]
}
</script>
Simply add this code to your page, and search engines will recognize all three products.
If you need a plugin-based solution for multiple product schema entries, you may need to explore Schema Pro, which offers a Custom Schema Markup feature.
Hope this helps! Let me know if you have any other questions.?
Kind Regards,
Ankush ??