superskyman100 Posted June 8, 2020 Share Posted June 8, 2020 Bonjour, J'ai cette erreur dans les résultats de ma console google search, qui apparaît dans toutes les pages (index/home; category, products) Quelqu'un saurait-il comment faire pour régler ce problème? Merci Link to comment Share on other sites More sharing options...
PSweb Posted June 8, 2020 Share Posted June 8, 2020 Bonjour, cette erreur est liée à la mauvaise utilisation des "données structurées" sur votre site. Google vous indique qu'il manque sur chacune de vos fiches produit une balise permettant de préciser sur quoi porte les avis (ici le nom du produit) via un champ intitulé "itemReviewed". Pour plus de précisions : https://search.google.com/structured-data/testing-tool/u/0/?hl=fr#url=https%3A%2F%2Fwww.sexy-cherry.com%2Ffr%2Fboutique-sexy-cherry%2Flingerie-sexy%2Fsets-lingerie%2F2pcs%2Fensemble-taille-haute-amanda.html Pour régler ce problème il faut modifier votre fichier de thème et corriger cette balise. 1 Link to comment Share on other sites More sharing options...
superskyman100 Posted June 9, 2020 Author Share Posted June 9, 2020 Bonjour, Merci beaucoup c'est tres clair !... Je ne suis pas programmeur, ca risque d'etre un peu complique pour moi... Le(s) fichier(s) de theme ce sont les .tpl ? Sur les .tpl il faudrait que j'entre un code HTML pour declarer les balises c ca ? Link to comment Share on other sites More sharing options...
PSweb Posted June 9, 2020 Share Posted June 9, 2020 Bonjour, oui, vous devez modifier les fichiers .tpl pour rajouter des balises à l'intérieur. En l'occurence il faut modifier ce bloc de code là (ligne 1805 à 1814) : <div class="greview_star" itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope > <div class="star_content"> <span class="grating"> <span class="grating_val" style="width:95%;"></span> </span> </div> <span class="gratinggount"><span itemprop="ratingCount">12</span> Commentaire(s) </span> <meta itemprop="ratingValue" content="4.8" /> <meta itemprop="bestRating" content="5" /> </div> remplacez le par ce bloc de code : <div class="greview_star" itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope > <meta itemprop="itemReviewed" itemscope itemtype="https://schema.org/Product" content="{$product.name}" /> <div class="star_content"> <span class="grating"> <span class="grating_val" style="width:95%;"></span> </span> </div> <span class="gratinggount"><span itemprop="ratingCount">12</span> Commentaire(s) </span> <meta itemprop="ratingValue" content="4.8" /> <meta itemprop="bestRating" content="5" /> </div> Je pense que ça devrait être bon. N'hésitez pas à tester votre page ici : https://search.google.com/structured-data/testing-tool/u/0/?hl=fr 1 Link to comment Share on other sites More sharing options...
superskyman100 Posted June 13, 2020 Author Share Posted June 13, 2020 Merci beaucoup !!! Link to comment Share on other sites More sharing options...
Carrinh Posted March 13 Share Posted March 13 On 6/9/2020 at 7:49 AM, PSweb said: Bonjour, oui, vous devez modifier les fichiers .tpl pour rajouter des balises à l'intérieur. En l'occurence il faut modifier ce bloc de code là (ligne 1805 à 1814) : <div class="greview_star" itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope > <div class="star_content"> <span class="grating"> <span class="grating_val" style="width:95%;"></span> </span> </div> <span class="gratinggount"><span itemprop="ratingCount">12</span> Commentaire(s) </span> <meta itemprop="ratingValue" content="4.8" /> <meta itemprop="bestRating" content="5" /> </div> remplacez le par ce bloc de code : <div class="greview_star" itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope > <meta itemprop="itemReviewed" itemscope itemtype="https://schema.org/Product" content="{$product.name}" /> <div class="star_content"> <span class="grating"> <span class="grating_val" style="width:95%;"></span> </span> </div> <span class="gratinggount"><span itemprop="ratingCount">12</span> Commentaire(s) </span> <meta itemprop="ratingValue" content="4.8" /> <meta itemprop="bestRating" content="5" /> </div> Je pense que ça devrait être bon. N'hésitez pas à tester votre page ici : https://search.google.com/structured-data/testing-tool/u/0/?hl=fr Hello, I have this problem too... "item reviewed field missing". It's only the I know the problem isn't of the reviews module, but I don't know how to solve it. I saw this page, but I don't found where and what to do exactly to solve this... can someone explain me (totally for newbies)? Thank you very much Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now