Mobile app version of vmapp.org
Login or Join
Hamaas447

: Only two social profile links listed in the Knowledge Graph We have a local business listing (and a G+ page) for our website. We have Structured Data configured to list our social profiles

@Hamaas447

Posted in: #GoogleSearch #KnowledgeGraph #SchemaOrg #SocialNetworks

We have a local business listing (and a G+ page) for our website. We have Structured Data configured to list our social profiles :

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"url": "https://www.bidpress.com",
"sameAs": [
"https://www.facebook.com/bidPress",
"https://instagram.com/bidpress",
"https://www.twitter.com/bidpress",
"https://plus.google.com/+bidPress"
],
"name": "bidPress",
"address": {
"@type": "PostalAddress",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10014",
"streetAddress": "659 Washington Street, Suite 5R"
},
"email": "mailto:help@bidpress.com",
"telephone": "+1 (888) 463-5823",
"legalName": "bidPress",
"logo": "https://www.bidpress.com/t-shirt-design-bidpress-logo.png"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "bidPress",
"url": "https://www.bidpress.com",
"sameAs": [
"https://www.facebook.com/bidPress",
"https://instagram.com/bidpress",
"https://www.twitter.com/bidpress",
"https://plus.google.com/+bidPress"
]
}
</script>


Only Twitter and Facebook show up, the other two don't. How can I get the other two to show up?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamaas447

1 Comments

Sorted by latest first Latest Oldest Best

 

@Bryan171

A quick testing of your structured data will give you any errors.
Google Structured Data Testing Tool

All though Google recommends JSON. Their example for social is as follows.

<span itemscope itemtype="http://schema.org/Organization">
<link itemprop="url" href="http://www.your-company-site.com">
<a itemprop="sameAs" href="http://www.facebook.com/your-company">FB</a>
<a itemprop="sameAs" href="http://www.twitter.com/YourCompany">Twitter</a>
</span>


EDIT: Couple of more things to consider. If it is less than one week, wait it out till the end of the week. Google suggests to contact them if they all do not work after 1 week and the markup has been tested and passed, which your site has.

More importantly, your profiles have to be verified.
You can learn how to properly verify all social accounts here How To Verify Your Social Media Profiles

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme