Is there an integration that lets me create an editorial summary box for a product review that’s also schema-enabled? It should ideally have a product score, summary, pros and cons and a button for CTA. Something like this:
There is not. You can put a manually-built/built-elsewhere schema into the post’s code injection. You could get somewhat close to that summary box (not exact) using the CTA card, or you could use a little custom html in an html card there. [Be sure to check that it renders OK in email, if you go with custom html.]
Alternately, you could store your review data elsewhere (i.e. a cloud database/spreadsheet) and run some javascript to pull the content into the page when it loads. That may be easier to maintain, but risks getting missed if the crawler visiting your site doesn’t parse the javascript. And it won’t work in email or on ActivityPub, because email clients don’t parse javascript, and any javascript gets stripped before your content goes out to the Fediverse.
Thanks Cathy- I am using the CTA card to start with as its the easiest. I’m not sure if adding the star rating adds the review schema with it though.
Sounds like you’re using the product card? It does not add a review schema. I don’t believe any of the cards add schema. That’d be nice sometimes.
You could try this tool for generating schema: Structured Data Markup Helper
And then you’d paste the output into the code injection header for the post. (You can access post-specific code injection header in the right side menu, below where you set the tags, publication date, etc.
Thanks- yes, using the product card but need to find a better solution. Have reached out to https://affiliatable.io to see if that could work, though I much prefer a local solution over embedding something remote.