S
S
sashakirichenko2020-09-18 10:44:06
Search Engine Optimization
sashakirichenko, 2020-09-18 10:44:06

What is better to duplicate as much text or duplicate a picture?

Hello people. There is such a question. We create a website where each product has a small standard description (100 words). We have 500 products, such a description is duplicated for each product, the same for all. What is better to translate this text into a picture and duplicate the picture 500 times or duplicate the same text for all products?

In addition, each has a unique description. But wouldn't it be a big mistake that we duplicated the same text 500 times?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Anton Velichko, 2020-09-18
@sashakirichenko

What is better to translate this text into a picture and duplicate the picture 500 times, or duplicate the same text for all products?

As you were answered earlier, a solution with text as a picture is a bug. Because if on a PC it will be the norm, then on mobile it will be tin.
The same text 100 words = 630 characters with spaces and 530 without spaces. Which is quite essential for an internal duplicate, if your goal is to uniqueize content within the site / cards.
But wouldn't it be a big mistake that we duplicated the same text 500 times?

Those. a solution with a double text of such a volume is not a good solution.
Is there any solution to do it smartly and quickly?

Yes, there is an option - to order reproduction of the text.
It will be fast, but to place an order, your text of 630 characters must be unique.
And having xerified it for 500 cards, you still get a non-unique synonymization.
Therefore, the solution is simple, display text via Ajax, i.e. so that search engines can't index it. An example of such a solution is a pop-up text in the DNS (see screenshot)
5f64706be865c440424034.jpeg

D
Dimonchik, 2020-09-18
@dimonchik2013

it will be,
but in the picture, too, it’s idiotically
better to attach a unique description

P
Puma Thailand, 2020-09-18
@opium

It depends on what kind of text and why it is needed there.
In general, in such matters, you can go to Google and see how competitors from the top3 did

E
Exploding, 2020-10-12
@Exploding

As already said - ajax is most likely exactly what you need!
But you can consider more options with dynamic css and data attributes.
In the first case (with css): "on the fly" we create something like:

<style>
.item-hint-154:after{
   content: "Смартфоны с малой диагональю.... [весь этот текст из скрина]";
}
</style>

And in css on hover we show a block with text.
If the option to shit in the markup with styles is not suitable, you can use a more feng shui option: everything looks similar with data attributes, only the text will not be in styles, but like this:
<span data-hint="Смартфоны с малой диагональю...">( ? )</span>

and in css you can do something like this:
[data-hint]:hover:after{
   //.....
   content: attr(data-hint);
   //....
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question