Jump to content

Avertissement author google search console (résolu)


Recommended Posts

Bonjour,

Prestashop 1.7.5.2, php7.1

J'ai cet avertissement pour les produit dans la google search console : Type d'objet non valide pour le champ "author"

J'ai fait des recherches, j'avais d'autres avertissements que j'ai réussi a corriger, mais pas celui ci.

Pourtant on vois bien le nom (Tony)

Merci de votre aide.

author.JPG

Capture.JPG

Edited by rtony30 (see edit history)
Link to comment
Share on other sites

Bonjour 

je vous remercie je vais essayer

j'avais ca 

<div itemprop="review" itemscope itemtype="http://schema.org/Review" class="invisible">
    <span itemprop="author">{Configuration::get('PS_SHOP_NAME')}</span>,
     <meta itemprop="datePublished" content="{'Y'|date}-{'m'|date}-{'d'|date}">
    <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
    <meta itemprop="worstRating" content="1"/>
    <meta itemprop="ratingValue" content ="{$averageTotal}" />
    <meta itemprop="bestRating" content="5" />
</div>

merci je vous tiens informer

Cordialement

Link to comment
Share on other sites

Bonjour

j'ai trouver ceci dans le /www/themes/AngarTheme/modules/productcomments/views/templates/front/productcomments.tpl

comment l'adapter pour le type person

je suis pas codeur

merci

Quote

<div id="product_comments_block_tab">
            {if $comments}
                {foreach from=$comments item=comment}
                    {if $comment.content}
                        <div class="comment clearfix" itemprop="review" itemscope itemtype="http://schema.org/Review">
                            <div class="comment_author">
                                <span>{l s='Grade' mod='productcomments'}&nbsp</span>
                                <div class="star_content clearfix">
                                    {section name="i" start=0 loop=5 step=1}
                                        {if $comment.grade le $smarty.section.i.index}
                                            <div class="star"></div>
                                        {else}
                                            <div class="star star_on"></div>
                                        {/if}
                                    {/section}
                                </div>
                                <div class="comment_author_infos">
                                    <strong itemprop="author">{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/>
                                    <em itemprop="datePublished" content="{dateFormat date=$comment.date_add|escape:'html':'UTF-8' full=0}">{dateFormat date=$comment.date_add|escape:'html':'UTF-8' full=0}</em>
                                </div>
                            </div>
                            <div class="comment_details">
                                <h4 class="title_block" itemprop="name">{$comment.title}</h4>
                                <p itemprop="description">{$comment.content|escape:'html':'UTF-8'|nl2br nofilter}</p>
 

 

Link to comment
Share on other sites

Bonjour,

Essai en remplaçant cette ligne:

<strong itemprop="author">{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/>

par ceci:
 

<div itemprop="author" itemtype="https://schema.org/Person" itemscope>

<strong itemprop="name">{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/>      

</div>

Après fait un test de ta page ici: https://validator.schema.org/

Link to comment
Share on other sites

2 hours ago, Stéphane said:

Bonjour,

Essai en remplaçant cette ligne:

<strong itemprop="author">{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/>

par ceci:
 

<div itemprop="author" itemtype="https://schema.org/Person" itemscope>

<strong itemprop="name">{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/>      

</div>

Après fait un test de ta page ici: https://validator.schema.org/

Bonsoir,

Bingo du premier coup

je vous remercie d'avoir pris le temps de m'aider, un grand merci

les extrait d avis search console sont tous au vert

il me reste 2 avertissements pour les produits (review et aggregateRating ) qui est normal car pas d'avis sur ces produit

pour pallié a cette avertissement il y a t il une solution ?

pour les deux c est champ manquant

du coup je peut pas valider la correction car il détecte c est avertissements

merci

Quote

 

 

Edited by rtony30 (see edit history)
Link to comment
Share on other sites

On 10/24/2021 at 12:07 PM, Stéphane said:

Bonjour,

je ne sais pas s'il y a une solution, j'ai les mêmes avertissements sur mes fiches produits sans avis, mais rien de grave pour moi.

Ce n'est qu'un avertissement et ces éléments sont considérer comme facultatifs.

Bonjour

ok pour l info

encore merci de votre aide

Cordialement

tony

Link to comment
Share on other sites

  • rtony30 changed the title to Avertissement author google search console (résolu)
  • 1 year later...

problème résolu :

Remplacer:

<div itemprop="review" itemscope itemtype="http://schema.org/Review" style="display:none">
        <span itemprop="author">{Configuration::get('PS_SHOP_NAME')}</span>

 

Par ceci:
    <div itemprop="review" itemscope itemtype="http://schema.org/Review" style="display:none">
    <div itemprop="author" itemtype="https://schema.org/Person" itemscope>
          <meta itemprop="name" content="{Configuration::get('PS_SHOP_NAME')}"></div>

 

Edited by Leaderone
petit ajout (see edit history)
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...