Jump to content

Missing field 'itemReviewed'


Recommended Posts

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.

  • Thanks 1
Link to comment
Share on other sites

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

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>&nbspCommentaire(s)&nbsp</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>&nbspCommentaire(s)&nbsp</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

  • Thanks 1
Link to comment
Share on other sites

  • 3 years later...
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>&nbspCommentaire(s)&nbsp</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>&nbspCommentaire(s)&nbsp</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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...