@haylee.mertz
To add OG meta tags to Shopify product descriptions, you will need to edit the theme files in your Shopify store. Here's a step-by-step guide on how to do it:
1 2 3 4 5 |
<meta property="og:title" content="{{ product.title }}" /> <meta property="og:description" content="{{ product.description }}" /> <meta property="og:image" content="{{ product.featured_image.src | img_url: '1024x1024' }}" /> <meta property="og:url" content="{{ shop.url }}{{ product.url }}" /> <meta property="og:type" content="product" /> |
By following these steps, you should be able to successfully add OG meta tags to your Shopify product descriptions.