Home > Mobile >  Where is the text coming from in my site's search results listing?
Where is the text coming from in my site's search results listing?

Time:04-06

enter image description here

Why meta tags description and title are not displayed. More precisely, they are displayed, but not the ones you need.

The site is written in React. I am attaching the meta tag code of the index.html file

<meta charset="utf-8" />    
<meta name="description" content="Вернем 10% кешбека за первый заказ у нас. Новая фриланс биржа для заказчиков. Прозрачная оплата по частям, ваши деньги в безопасности! Заказывайте у нас любые проекты, а мы сделаем все, чтобы выполнить его максимально быстро!"     />

I changed all the meta tags as I needed, inserted my text there. But the site is still displayed that way.

CodePudding user response:

If Search Engines are your target, you seem to be in need of Open Graph meta tags or OG tags.

<meta property="og:title" content="Finder" />
<meta property="og:description" content="Вернем 10% кешбека за первый заказ у нас. Новая фриланс биржа для заказчиков. Прозрачная оплата по частям, ваши деньги в безопасности! Заказывайте у нас любые проекты, а мы сделаем все, чтобы выполнить его максимально быстро!" />
<meta property="og:image" content="*insert image url*" />

You might also want to check Twitter Card tags for targetting Twitter. You might like this: https://ahrefs.com/blog/open-graph-meta-tags/

  • Related