• Resolved Manish

    (@nims)


    I have 3 photography packages on the pricing page. Chatgpt says to use product schema. How can I schema for 3 products on a single page using this plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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 🙂

    Hi @nims,
     
    It’s been a while since my last response, and we haven’t heard back from you. I hope the solution shared earlier helped resolve your issue!
     
    I’ll mark this thread as resolved due to inactivity. If you still need assistance, feel free to reply here or start a new thread for any other questions related to this plugin. We’re always here to help!
     
    Kind regards,
    Ankush 😊

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Which schema to use for photography services’ is closed to new replies.