I’ve noticed that Webflow automatically sets the twitter:card open graph meta tag to summary. I want to customize this so that it’s set to summary_large_image.
Unfortunately, there doesn’t seem to be an option to change that meta tag.
I’m also working around this issue with a new site. I’ve exported the Webflow code files to my own host and can add the Twitter:card code for the “summary_large_image”, easy enough. But I will want to add it to my Webflow custom code so I don’t have to do that every time.
You will need to create all this metatags manually because webflow create twitter meta tags with <meta property= and twitter only works with <meta name=
<!-- Twitter Card Tags para personalizar o compartilhamento no Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Title for twitter">
<meta name="twitter:description" content="Long and bait description for Twitter.">
<meta name="twitter:image" content="https://www.your-cdn-or-site.com/img/yourimg.jpg">
<meta name="twitter:site" content="@yourTwitter">