Medium will no longer import any of our articles

Hey @jmw! I was able to figure out how to add the rel=canonical link our webflow CMS posts (using your instructions so thanks) but don’t you also have to add that to the Medium post? And I’m not sure you can do that without using Medium’s import tool?

(Also not being able to use Medium’s import tool is terrifying to me. I don’t want to mess up the SEO on our site. Do you know if Webflow is working on a fix for this? I would advocate for moving this up the priority list for your dev team. Looks like it’s been broken since May.)

Hey @DavidAdkin!

Glad you were able to figure out how to add a rel=canonical to your Webflow posts! And great questions. Here’s my answers:

  1. Yes, in an ideal world, you’d want the rel=canonical code in your Medium post too. And there’s likely not a way to add it without using Medium’s import tool. So that’s a pain. With that in mind, I’d recommend that you always wait for at least a few days before syndicating your posts to Medium. That’ll give Google time to recognize that the article published on your site is the original version, and prioritize it over the Medium version in SERPs. Making sure that you share the original version in your social media will help that as well. (It’s also worth noting that we’re far from the only people who syndicate content to Medium, so I’d imagine Google is very familiar with this wrinkle in people’s publishing habits.) I should also note at this point that I was wrong when I said earlier that just adding your link back to the source without rel=canonical would “work” — though hopefully it’d help drive traffic back to your site, at the least.

  2. I just tried importing one of my posts on the Webflow blog to my Medium account, and it worked … mostly. Where it failed is pretty easy to understand: Our blog’s rich text content is split into two fields to allow for an “inline ad” in the middle of each post. Medium’s importer appears to fail when it hits that ad block, but imports the rest of the article without a hitch. To my mind this suggests the problem isn’t really with Webflow per se, and more likely arises from our content itself. With that in mind: do you have anything in your post Collection that might break up or otherwise interfere with the rich text block, @DavidAdkin? Happy to take a look if you can provide me a link.

1 Like

Thanks for the quick response @jmw!

  1. Yea, driving traffic back to our main webflow site is awesome but nervous about the duplicate content from Medium affecting our overall SEO. I’m sure you’re right about how google probably understands Medium but if we can get the import to work that would be super ideal. Which leads me to point number…

  2. Yea I’d be happy to send you one. Here’s the latest blog post that didn’t work: Please Don’t Make These 3 Mistakes When Naming your Startup. | Adalo Blog And no I don’t think we have anything in our posts Collection that would break up the rich text. In fact, it used to work with this same format back in February when imported this article: What Features Should You Launch With? (Demystifying the MVP) | Adalo Blog

Looking forward to your response!

Hey, @jmw any update here?? (Sorry not trying to be too pushy here but importing articles to Medium a large part of our SEO strategy.)

Cheers,
David

I think you need to designate an Open Graph: type. This is the same issue I was having. It ultimately solved it for me. In my case the og type I chose was “article”.

36%20PM

This was marked as the solution for this thread from @JonUK on May 23

Hey @vlogic! Thanks for getting back to me here.

I see the article and response above but I’m not sure how to implement the fix.

How do I add a prefix attribute to my HTML tag? Where do I change the Head tag? And for title and description what do I put in for the … part?

The fix

The changes I made were to first register the Open Graph prefix of og: by adding the prefix attribute to my <html> tag.

<html lang="en" prefix="og: http://ogp.me/ns#">

Then within the <head> tag, I ensured the og:type metadata was set along with og:title and og:description .

<meta property="og:type" content="article">
<meta property="og:title" content="...">
<meta property="og:description" content="...">

I added 4 metatags to the page level custom code on my blog articles template page

OpenGraph_CustomCode

Your urls, paths and dynamic fields will of course be different based on the structure of your site and data.

Read about adding Custom code in your Page settings under the section Custom code in your Page settings

The Open Graph protocol for reference on properly formatting the tags.

I am using SEO Minion Chrome Extension to give me a quick overview of the results. You can use any Open Graph validation tool.

2 Likes

This worked! Thank you so so much!

1 Like

Glad to hear that solved it for you as well David.

Thanks, @vlogic! And sorry for going zombie on the thread, @DavidAdkin