Antoine Eripret Profile picture
Jan 19, 2022 11 tweets 5 min read Read on X
🚧 Muros de pago y SEO 🚧

El País (diario español) implementará un muro de pago freemium en breve (fuente: vozpopuli.com/medios/pais-nu…)

Pero, ¿sabes cómo funciona un muro de pago de cara al SEO?

Te lo cuento en este hilo.
Si no lo sabes, un muro de pago es un mecanismo que te impide acceder a un contenido sin pagar.

Los diarios lo usan bastante para monetizar su audiencia. Para el New York Times, hablamos de más de 60% de sus ingresos (dato del 2017).
A Google no le gusta mucho los intersticiales que bloquean los contenidos.

Entonces, ¿cómo podemos posicionar un contenido bloqueado sin caer en SEO?

developers.google.com/search/blog/20…
Realmente, es bastante fácil y Google nos lo explica: developers.google.com/search/docs/ad…

Más allá del etiquetado clásico, tenemos que indicar qué parte de nuestro contenido se puede leer sin pagar.
En el diario francés Le Monde, existe una <div> con una class "paywall" donde incluyen todo el contenido de pago en sus artículos.

Ejemplo: lemonde.fr/planete/articl…

Fácil, ¿verdad?
Para evitar que un usuario pueda consultar el artículo sin pagar igualmente :

1. Se suele impedir el uso del cache con el noarchive en la meta robots
2. Únicamente Googlebot (verificado) puede acceder al contenido completo
Para comprobar el segundo punto, puedes acceder a un contenido bloqueado usando search.google.com/test/rich-resu… y verás que puedes ver todo.

Es une forma lícita de hacer cloaking realmente.
Esa son las directrices oficiales. Ahora también puedes implementar algo ligeramente diferente.

En una implementación clásica, el contenido premium no estará en el código fuente si no eres Google.
En otros portales:

1. El contenido se carga completamente, como si fuese gratis
2. Mediante el valor de un cookie, una solicitud POST se hace, devolviendo una orden que muestra el muro de pago al usuario

Google lo ve como un contenido gratis.
Esta implementación es menos estándar pero, desde mi perspectiva, funciona muy bien. Y no cambia nada para el usuario.

Eso sí, la implementación es más compleja pero supongo que hay un motivo :)
Para preguntas avanzadas sobre los muros de pago, creo que @ClaraSoteras y @mazariegos_seo te podrán ayudar más.

No te voy a engañar: en pocos proyectos he tenido que lidiar con este tema, así que tengo una visión muy teórica del tema :)

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Antoine Eripret

Antoine Eripret Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @antoineripret

Apr 13, 2023
🤓 Google Sheets formulas every SEO should know 🤓

Let's go through the most common formulas you need to master to work quicker.

Most of them can also be used in Excel, but not all of them.
1. VLOOKUP

THE formula you have to master because it allows you to merge data from different tables. Very useful to combine Search Console and Analytics data, for instance.

You have to master it. Image
2. FILTER

I've explained everything about this formula in a separate thread:
Read 15 tweets
Apr 12, 2023
🛑 SEO tip: Never assume search intent 🛑

These three queries have the same search intent but, for some reason, Google thinks that "python playground" is different. Bing as well.

Should have I done it manually, I'd have created one URL to target these queries. Image
Funny to see how a website is ranking on both (supposed) intents, with two versions of the same functionality.

While others are just present on a part of the demand.

Be smart and look at SERP data before taking decisions! Image
PS: Screenshots from @keywordinsights
Read 4 tweets
Apr 11, 2023
🛣️ How to create an efficient SEO roadmap 🛣️

SEO theory is relatively easy, but pushing changes into production is harder. How many ideas have you got? How many will be live?

Let me explain how I manage to define & plan an SEO roadmap with other teams! Image
Foremost, it's important to keep track of all the ideas you have. A simple to-do list is enough.

A sort of brain dump to ensure that even if you can't implement them now, you never forget an idea that occurred to you. Image
When comes the planning phase (frequency depends on how the organization operates), take these ideas and:

* Create a brief summary (2-3 sentences)
* Assign an SEO priority
* Ask IT to assign a complexity

Based on these two criteria, you can define a prioritization. Image
Read 13 tweets
Apr 4, 2023
🚦 Find cannibalization at scale using GSC 🚦

Keyword cannibalization means that you have more than one content ranking. It's often a situation you want to avoid.

Easy to spot when you check a couple of URLs, but how to handle thousands of URLs?

Let me explain! Image
When you intend to spot a cannibalization, you can use an external tool such as @semrush.

Head to the Keyword Gap tool and introduce the two URLs you wish to compare.

Great if you don't have access to GSC data, for instance. Image
If you have access to GSC, you can achieve the same using first-party data.

* Filter on a specific query (you can also use a REGEX)
* Go to the "Pages" tab

You can see quickly see which URLs are ranking for this query. Easy, right? Image
Read 11 tweets
Mar 9, 2023
🕵️ How can you spy on a competitor's content strategy? 🕵️

Your strategy must never be a simple pale copy of what others are doing, but it's always a good idea to know what they are up to.

Let me show you, with a real example, how you can generate insights quickly. Image
Let's assume we're working in the travel industry and one of our competitors is Skyscanner.

We want to understand what they are doing on their blog and generate some insights based on the data we have at our disposal. Image
First step: get an exhaustive list of their URLs

This could be done through a crawl, but I'd rather get the list from a sitemap. Not always doable, but in this case, it was easy to find what I was looking for. Image
Read 11 tweets
Feb 7, 2023
🚨 New article: content rehydration and SEO 🚨

JavaScript SEO is not going away, and is often challenging.

If you want to know what is content hydration and how it can cause huge traffic drop, check my article or read the thread below

aeripret.com/content-rehydr… Image
Content rehydration is a process that occurs when a website, built with a JavaScript framework, such as Angular or React, dynamically updates the content on a page without requiring a full-page refresh.

Why using rehydration instead of relying only on SSR? It is faster!
What is the issue with content rehydration?

It will add a script to the raw response sent by your server with all the required code to make the application dynamic. Out-of-the-box, this script can easily represent more than 90% of the total HTML size. Image
Read 7 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(