Hi Guys,
I've been going into a bit of a rabbit hole trying to find out the correct way to implement what needs to be implemented in order for review stars to show up in the organic search results for an attorney's website.
A few things I have found out that I would like to share here in relation to attorney websites and review stars displayed in the search results, as well as some questions.
Observations:
1: The home page itself is not eligible for being shown on the search results with review stars.
2: Internal pages could be eligible provided the content is for example a service, about or attorney profile page.
3: Review stars aren't guaranteed to be displayed in the search result snippet, despite having the needed markup in the HTML source code.
Currently I see attorney website's internal pages show up in the search results with review stars in their search result snippet.
Even though Google stated they won't show review stars for schema types "LocalBusiness" and "Organization".
Looking at some of the search results snippets for the pages I see ranking, I see that instead of the schema types "LocalBusiness" and "Organization", a different inaccurate schema type is being used, namely "Product".
This is an example that I found, (added example business info to replace original business info):
Alternatively, instead of the name of the firm, the practice area is being used, example:
The numbers aren't correct either, they are just made up, and yet it looks to me like just dropping in a code snippet like one of the above examples is all it takes to trigger the review stars.
Questions:
1: Am I correct to assume this, or am I missing something?
2: Is there a better way than the above method?
3: Would you use this method for your client websites, legal or other type of local business?
I've been going into a bit of a rabbit hole trying to find out the correct way to implement what needs to be implemented in order for review stars to show up in the organic search results for an attorney's website.
A few things I have found out that I would like to share here in relation to attorney websites and review stars displayed in the search results, as well as some questions.
Observations:
1: The home page itself is not eligible for being shown on the search results with review stars.
2: Internal pages could be eligible provided the content is for example a service, about or attorney profile page.
3: Review stars aren't guaranteed to be displayed in the search result snippet, despite having the needed markup in the HTML source code.
Currently I see attorney website's internal pages show up in the search results with review stars in their search result snippet.
Even though Google stated they won't show review stars for schema types "LocalBusiness" and "Organization".
Looking at some of the search results snippets for the pages I see ranking, I see that instead of the schema types "LocalBusiness" and "Organization", a different inaccurate schema type is being used, namely "Product".
This is an example that I found, (added example business info to replace original business info):
JavaScript:
<script nonce="" type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Acme Law Firm",
"description": "Acme is the best choice for your legal issues.",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "100",
"bestRating": "5",
"worstRating": "1",
"itemReviewed": "Acme Law Firm"
}
}
</script>
Alternatively, instead of the name of the firm, the practice area is being used, example:
JavaScript:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"name": "Personal Injury Attorney ",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "10"
}
}
</script>
The numbers aren't correct either, they are just made up, and yet it looks to me like just dropping in a code snippet like one of the above examples is all it takes to trigger the review stars.
Questions:
1: Am I correct to assume this, or am I missing something?
2: Is there a better way than the above method?
3: Would you use this method for your client websites, legal or other type of local business?