Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi
When google indexes my site (www.andaboat.com) it doesnt interpret the "vendor" correct.
It complains on this.
"brand": {
"@type": "Thing",
"name": "Guzzini"
},
From what i read up on, the @type has to be "organization" or preferably "Brand"
How do I change this? can I do this as a "non coder" or is it something for a pro?
I'm using Empire theme.
Thanks!
Solved! Go to the solution
This is an accepted solution.
Found the sollution, so I thougth I'd post it if someone else runs into the same problem.
In Empire theme. The sctructured data is located in Snippets, Structured-data.liquid.
Simply search for "brand" and replace thing with Brand like below
"brand": {
"@type": "Brand",
"name": "Guzzini"
},
This is an accepted solution.
Found the sollution, so I thougth I'd post it if someone else runs into the same problem.
In Empire theme. The sctructured data is located in Snippets, Structured-data.liquid.
Simply search for "brand" and replace thing with Brand like below
"brand": {
"@type": "Brand",
"name": "Guzzini"
},