
Shopifyではホームや商品詳細、ブログなどSNSでシェアする際に表示されるOGP画像は標準で個別に設定できるのですが、「ページ」だけはそうなっていないため全てホームのOGP画像が表示されてしまいます。なので、こちらもメタフィールドを使って個別に設定できるようにしておくと便利です。
メタフィールドを作成する
snippets/meta-tags.liquidを編集する
テストツールで確認する

{%- if page.metafields.custom.ogp -%}
<meta property="og:image" content="http:{{ page.metafields.custom.ogp | image_url }}">
<meta property="og:image:secure_url" content="https:{{ page.metafields.custom.ogp | image_url }}">
<meta property="og:image:width" content="{{ page.metafields.custom.ogp.width }}">
<meta property="og:image:height" content="{{ page.metafields.custom.ogp.height }}">
{%- elsif page_image -%}
<meta property="og:image" conte...