Org missing sameas

Quick win

Found on 26% of audited stores.

Add a `sameAs` array to your Organization structured data, linking to your official social profiles, Wikipedia page, LinkedIn, and other authoritative directories so search engines can confidently identify your brand as a distinct entity.

What it is

Structured data is hidden code on your website that tells search engines facts about your business in a standardized language they understand. One of the most powerful pieces of that code is the `Organization` schema, which describes who you are. Inside it, the `sameAs` property is a list of URLs — your LinkedIn page, Facebook, Instagram, Wikipedia entry, Wikidata record, and so on — that all point to the same real-world business. Think of it as giving Google a collection of "proof links" that confirm your brand identity across the web.

Why it matters

Search engines build a mental map of the web called a Knowledge Graph, where businesses, people, and concepts exist as distinct "entities." Without `sameAs` links, Google may struggle to connect your website to the broader signals about your brand that already exist across the web, weakening your entity authority. Strong entity recognition improves your chances of appearing in AI-generated answers (AEO / SGE), earning a Knowledge Panel in search results, and ranking for branded queries. It also makes your brand more resistant to being confused with competitors or namesakes, protecting the organic traffic you've already earned.

How to fix it

  1. Collect every authoritative URL where your business is officially represented: LinkedIn company page, Facebook page, Instagram profile, X (Twitter) profile, YouTube channel, Pinterest, Wikipedia article, Wikidata entity page, Crunchbase profile, and any major industry-directory listings.
  2. Locate the JSON-LD block on your site that contains your Organization (or LocalBusiness) schema — typically placed in the <head> of your homepage or in a global site-wide script.
  3. Add a `sameAs` key to that JSON-LD object whose value is an array of all the URLs you collected in step 1, using canonical, permanent URLs (not redirect short-links).
  4. Validate the updated markup using Google's Rich Results Test (search 'Rich Results Test') by pasting your homepage URL or the raw JSON-LD code.
  5. Publish the change and confirm the live page returns no structured-data errors in Search Console under Enhancements → any Organization-related report.
  6. Keep the list current: whenever you create or delete a social profile, update the `sameAs` array within the same sprint.
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Brand Name",
  "url": "https://www.yourdomain.com",
  "logo": "https://www.yourdomain.com/logo.png",
  "sameAs": [
    "https://www.linkedin.com/company/your-brand",
    "https://www.facebook.com/yourbrand",
    "https://www.instagram.com/yourbrand",
    "https://twitter.com/yourbrand",
    "https://www.youtube.com/@yourbrand",
    "https://en.wikipedia.org/wiki/Your_Brand",
    "https://www.wikidata.org/wiki/Q000000",
    "https://www.crunchbase.com/organization/your-brand"
  ]
}

Fix it on your platform

Pick your platform for the exact steps.

How to fix org missing sameas on Shopify
  1. In your Shopify admin, go to Online Store → Themes → click the '…' (Actions) menu next to your live theme → Edit code.
  2. Open the file `layout/theme.liquid` (or search for an existing JSON-LD `<script type='application/ld+json'>` block in that file).
  3. Paste (or update) the Organization JSON-LD snippet — including the `sameAs` array — just before the closing `</head>` tag.
  4. Save the file, then verify with Google's Rich Results Test using your live homepage URL.
How to fix org missing sameas on WooCommerce
  1. Install the free Yoast SEO or Rank Math plugin if not already active.
  2. For Yoast SEO: go to Yoast SEO → Settings → Site representation; fill in your organization name, logo, and then scroll to 'Other profiles' to add all your social/profile URLs — Yoast automatically outputs these as `sameAs` in JSON-LD.
  3. For Rank Math: go to Rank Math → Titles & Meta → Local SEO → Social Profiles; enter each URL; Rank Math injects them into the Organization schema site-wide.
  4. If you prefer manual control, add the JSON-LD snippet via your child theme's `functions.php` using `wp_head` action hook, or use the 'Insert Headers and Footers' plugin to paste the script into the <head>.
  5. Verify the output with Google's Rich Results Test.
How to fix org missing sameas on BigCommerce
  1. In BigCommerce admin, go to Storefront → Script Manager → Create a Script.
  2. Set Location to 'Head', Page to 'All Pages', Script type to 'Script'.
  3. Paste your Organization JSON-LD block (with `sameAs`) into the script body.
  4. Save, then test your homepage with Google's Rich Results Test.
How to fix org missing sameas on Wix
  1. In your Wix dashboard, go to Settings → Advanced → Custom Code.
  2. Click '+ Add Custom Code', paste the Organization JSON-LD (with `sameAs`), set it to load in the '<head>' section, and choose 'All pages'.
  3. Save and publish, then verify with Google's Rich Results Test.
How to fix org missing sameas on Squarespace
  1. In your Squarespace admin, go to Settings → Advanced → Code Injection.
  2. Paste the Organization JSON-LD block (with `sameAs`) into the 'Header' code injection field.
  3. Save, then verify with Google's Rich Results Test using your live homepage URL.
How to fix org missing sameas on Webflow
  1. In the Webflow Designer, open your Project Settings → Custom Code tab.
  2. Paste the Organization JSON-LD block (with `sameAs`) into the 'Head Code' field.
  3. Publish the site, then verify with Google's Rich Results Test.
How to fix org missing sameas on Adobe Commerce (Magento)
  1. In your Magento admin, go to Content → Design → Configuration → select your store view → Edit.
  2. Scroll to 'HTML Head' → 'Scripts and Style Sheets' and paste the Organization JSON-LD block (with `sameAs`) there, wrapped in `<script type='application/ld+json'>` tags.
  3. Alternatively, edit your theme's `default_head_blocks.xml` layout file to add a structured-data block via a custom module for more maintainable deployment.
  4. Flush the Magento cache (System → Cache Management → Flush Cache), then verify with Google's Rich Results Test.
How to fix org missing sameas on WordPress.org
  1. If using Yoast SEO: go to Yoast SEO → Settings → Site representation → fill in organization details and 'Other profiles' URLs; they are output automatically as `sameAs`.
  2. If using Rank Math: go to Rank Math → Titles & Meta → Local SEO → Social Profiles and enter each profile URL.
  3. For manual implementation: add the JSON-LD to your child theme's `functions.php` using `add_action('wp_head', function(){ echo '<script type="application/ld+json">...</script>'; });`, or use the 'Insert Headers and Footers' plugin.
  4. Verify output with Google's Rich Results Test.
How to fix org missing sameas on Wix Studio
  1. In Wix Studio, open the site dashboard → Settings → Custom Code.
  2. Add a new custom code snippet in the '<head>' section, paste the Organization JSON-LD (with `sameAs`), set it to 'All pages'.
  3. Publish the site and verify with Google's Rich Results Test.
How to fix org missing sameas on BigCommerce for WP
  1. Use the same approach as WooCommerce: install Yoast SEO or Rank Math, then add social profile URLs in the plugin's organization settings to populate `sameAs` automatically.
  2. Or paste the JSON-LD snippet via the 'Insert Headers and Footers' plugin targeting the <head> on all pages.
  3. Verify with Google's Rich Results Test.

Does your site have this issue?

Run a free SEOLZ audit to find org missing sameas — and every other issue — across your whole site in minutes.

Scan my site free

Frequently asked questions

What is Org missing sameas?

Structured data is hidden code on your website that tells search engines facts about your business in a standardized language they understand. One of the most powerful pieces of that code is the `Organization` schema, which describes who you are. Inside it, the `sameAs` property is a list of URLs — your LinkedIn page, Facebook, Instagram, Wikipedia entry, Wikidata record, and so on — that all point to the same real-world business. Think of it as giving Google a collection of "proof links" that confirm your brand identity across the web.

Why does org missing sameas matter?

Search engines build a mental map of the web called a Knowledge Graph, where businesses, people, and concepts exist as distinct "entities." Without `sameAs` links, Google may struggle to connect your website to the broader signals about your brand that already exist across the web, weakening your entity authority. Strong entity recognition improves your chances of appearing in AI-generated answers (AEO / SGE), earning a Knowledge Panel in search results, and ranking for branded queries. It also makes your brand more resistant to being confused with competitors or namesakes, protecting the organic traffic you've already earned.

How do I fix org missing sameas?

Add a `sameAs` array to your Organization structured data, linking to your official social profiles, Wikipedia page, LinkedIn, and other authoritative directories so search engines can confidently identify your brand as a distinct entity.

Authoritative references

Related Answer Engine Optimization issues