Hi,
I’m not shure if this has some effect on search engines and AI-search. But SEO addon looks outdated. It creates like this schema code:
<script type="application/ld+json">
{"@context":"http:\/\/schema.org\/",
"@type":"http:\/\/schema.org\/Product",
"name":"Product name",
"sku":"123300",
"brand":{
"@type":"Brand",
"name":"My brand"
},
"description":"description"
...
}
I think the new code should be like this (by schema.org). Check @context and @type values:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "3.5",
"reviewCount": "11"
},
"description": "Description",
"name": "Kenmore White 17\" Microwave",
"image": "kenmore-microwave-17in.jpg",
I think it would be wise to update the code.
