Website builder
Add automatic Open Graph images to Wix pages using Advanced SEO additional meta tags or Velo for router pages.
Wix lets you add additional meta tags in SEO settings and can apply settings by page type. That works well for fixed pages and some repeated page types.
For Velo router pages, Wix also exposes SEO APIs that can create meta tags dynamically.
A Wix app is possible in the broad platform sense, but the fastest valuable integration is a guide because site owners can already add the needed head tags.
MyOG detects page content and branding automatically. The layout only controls image composition.
Use this when configuring one Wix page directly.
<meta property="og:image" content="https://api.myog.social/og?url=https%3A%2F%2Fexample.com%2Fabout&template=screenshot-right" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://api.myog.social/og?url=https%3A%2F%2Fexample.com%2Fabout&template=screenshot-right" />For page-type settings, replace the literal URL with the Wix variable for the current page URL if available in that setting.
For custom router pages, set the tag from your router SEO response.
const pageURL = "https://example.com/products/" + product.slug
return {
title: product.name,
description: product.description,
metaTags: [
{ property: "og:image", content: `https://api.myog.social/og?url=${encodeURIComponent(pageURL)}&template=screenshot-right` },
{ name: "twitter:card", content: "summary_large_image" },
{ name: "twitter:image", content: `https://api.myog.social/og?url=${encodeURIComponent(pageURL)}&template=screenshot-right` },
],
}Adapt this to your Wix router shape. The key is that crawlers receive meta tags from the router response, not client-side DOM edits after load.
Wix can output social share images from its SEO basics settings. Avoid two og:image tags for the same page. Either replace the social image with MyOG or use MyOG only where Wix has no image configured.
For repeated page types, use Wix's SEO variables in additional meta tags. For custom Velo router pages, set meta tags in router SEO logic so crawlers receive the final tags in head.
Start with the MyOG Open Graph Checker, then refresh social platform caches if needed.
Sign up for free and add generated social images to Wix pages.
Already have an account?
cdf733b534ea2f2ed964d150330b323c44837e4f