You can’t directly. Some of the snippet types Google supports for rating are not well defined by Google, and they are quite complicated to implement properly. The plugin allows for adding new snippet types via custom code and I plan to improve on that in the future, but there is no way to have built-in support for all the snippet types from schema.org.
From which part of your plugin can I add custom codes?
It is not that simple. But, Next update 3.1 (next week) will have option to add custom snippet type.
Version 3.1 is out, with the Custom Snippet type that allows setting any snippet type name.
From which section of the plugin can I enter the code for CreativeWorkSeason item?
This is described in the article in the knowledge base: https://support.dev4press.com/kb/article/setup-rich-snippets-for-rating-items/. Check out the section at the very end about switching to the custom type.
I mean, how do I add this code to Rich?
{
“@context”: “https://schema.org/”,
“@type”: “CreativeWorkSeries”,
“name”: “[title]”,
“aggregateRating”: {
“@type”: “AggregateRating”,
“ratingValue”: “[score]”,
“bestRating”: “[best]”,
“ratingCount”: “[count]”
}
}
Book and Recipe are available in the Pro version of the plugin. The rest of the snippets highlighted are quite complicated to implement, and Google doesn’t support them fully, lacking proper examples. I do plan to include Course in the future (most likely in Pro version of the plugin only), and for the other two, I have no plans to support them for now.
CreativeWorkSeason and CreativeWorkSeries can be set through Custom Type in version 3.1, because they are valid with minimum elements.