How to change metadata descriptions in social/link card previews?

I want to remove the description in card previews that says: “Follow @uncertainquark on micro.blog” and replace it with my own meta tags. I tried editing the head file via Custom Themes but see no effect as per opengraph.xyz for jatan.space.

See current code below. How do I fix this?
(@Moondeer I see you have successfully changes your metadata but can’t figure out by myself how to do it. :/)

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="4zyLsPlKIr6yLW3uWU-R1xx1tN-95deYK1DkUksKT4o" />
<meta content="{{ .Site.Author.name }}" name="author">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/earthbound" type="text/css"/>
<link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/iunito" type="text/css"/>

<!-- HTML Meta Tags -->
<title>
{{- block "title" . -}}
		{{- .Site.Title -}}
		{{- if .Title }}
		- {{ .Title }}
		{{- end -}}
      {{- end -}}
</title>
<meta name="description" content="Space exploration writer ✨ Contributing Editor for The Planetary Society ✨ Moon evangelist 🌗 Open Web advocate">

<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://jatan.space">
<meta property="og:type" content="website">
<meta property="og:title" content="Jatan's Space">
<meta property="og:description" content="Space exploration writer ✨ Contributing Editor for The Planetary Society ✨ Moon evangelist 🌗 Open Web advocate">
<meta property="og:image" content="https://jatan.space/uploads/2021/306aa5e943.png">

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="jatan.space">
<meta property="twitter:url" content="https://jatan.space">
<meta name="twitter:title" content="Jatan's Space">
<meta name="twitter:description" content="Space exploration writer ✨ Contributing Editor for The Planetary Society ✨ Moon evangelist 🌗 Open Web advocate">
<meta name="twitter:image" content="https://jatan.space/uploads/2021/306aa5e943.png">
1 Like

Look in the config.json file … there is an entry with the HTML that is being retrieved.

1 Like

Thank you so much, worked perfectly!