Jump to content

Problema Search Console errore Seo Google su tema default


Recommended Posts

Ciao a tutti da qualche settimana è comparso questi due errori su tutti i prodotti del mio listino su www.pianetasvapo.com che prima venivano considerati avvisi (in giallo) ora in rosso tema default bootstrap

 

 

1) Campo mancante "name"

 

2) Devi specificare "offers", "review" o "aggregateRating".


Avete soluzioni? 

 

Grazie 

Link to comment
Share on other sites

  On 8/27/2020 at 8:05 AM, ziobudda said:

Cerca su google allora. 

Prestashop 1.6 "offers", "review" o "aggregateRating"

E consiglio spassionato: aggiorna quella versione. E' troppo vecchia e oramai fuori "produzione"

M.

Expand  

Sì, non avevo trovato granchè pensavo ad una soluzione più veloce da parte degli utenti. Per quanto riguarda l'aggiornamento, so che è una versione obsoleta ma per il momento non posso aggiornare a causa di problemi di database con il mio distributore

Grazie 

Link to comment
Share on other sites

  • 4 months later...
  • 1 year later...

ciao Pianetasvapo,

per Prestashop 1.6 io ho risolto così:

Andare in: /iltuodominio/themes/default-bootstrap/product.tpl


Riga 37/39 originale: (questo per il Brand)
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)}">
    <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 


Riga 37/40 Correggere o sostituire con
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)}">
        <meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
        <meta itemprop="name" content="qui-scrivi-il-MARCHIO" />  

 

Andare in: /iltuodominio/themes/default-bootstrap/product-list.tpl

Riga 54 Originale: (Brand per i prodotti nella home)
          <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 

Riga 54 Correggere o sostituire con:  
           <meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
            <meta itemprop="name" content="Miceli Moto® Special Supports" /> 

 

AGGREGATE-RATING E REVIEW
Andare in: /iltuodominio/themes/default-bootstrap/product.tpl

Riga 48 Aggiungere:  (questo codice manca)
<!-- Pull the RatingValue and ReviewCount product scope-->
     <div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
        <meta itemprop="reviewCount" content="75" />   (.....metti numeri di tuo gusto)
        <meta itemprop="ratingValue" content="4.5" />   (.....metti numeri di tuo gusto)
      </div>
      <div itemprop="review" itemtype="https://schema.org/Review" itemscope>
        <div itemprop="author" itemtype="https://schema.org/Person" itemscope>
          <meta itemprop="name" content="Fred Benson" />
        </div>
        <div itemprop="reviewRating" itemtype="https://schema.org/Rating" itemscope>
          <meta itemprop="ratingValue" content="4" />
          <meta itemprop="bestRating" content="5" />
        </div>
      </div>
<!-- end of aggregate rating -->

 

nel mio sito in Google Search Control ho eliminato tutti gli avvisi che riguardavano "Brand" "aggregateRating" "review"

spero possa essere di aiuto a qualcuno!

 

Link to comment
Share on other sites

  On 1/1/2021 at 3:03 PM, Pianetasvapo said:

nessuno che abbia una soluzione? Come mai accade solo per determinati prodotti e non per tutti? 

 

Expand  

ciao Pianetasvapo,

per Prestashop 1.6 io ho risolto così:

Andare in: /iltuodominio/themes/default-bootstrap/product.tpl


Riga 37/39 originale: (questo per il Brand)
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)}">
    <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 


Riga 37/40 Correggere o sostituire con: 
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)}">
        <meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
        <meta itemprop="name" content="qui-scrivi-il-MARCHIO" />  

 

Andare in: /iltuodominio/themes/default-bootstrap/product-list.tpl

Riga 54 Originale: (Brand per i prodotti nella home)
          <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 

Riga 54 Correggere o sostituire con:  
           <meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
            <meta itemprop="name" content="Miceli Moto® Special Supports" /> 

 

AGGREGATE-RATING E REVIEW
Andare in: /iltuodominio/themes/default-bootstrap/product.tpl

Riga 48 Aggiungere:  (questo codice manca)
<!-- Pull the RatingValue and ReviewCount product scope-->
     <div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
        <meta itemprop="reviewCount" content="75" />   (.....metti numeri di tuo gusto)
        <meta itemprop="ratingValue" content="4.5" />   (.....metti numeri di tuo gusto)
      </div>
      <div itemprop="review" itemtype="https://schema.org/Review" itemscope>
        <div itemprop="author" itemtype="https://schema.org/Person" itemscope>
          <meta itemprop="name" content="Fred Benson" />
        </div>
        <div itemprop="reviewRating" itemtype="https://schema.org/Rating" itemscope>
          <meta itemprop="ratingValue" content="4" />
          <meta itemprop="bestRating" content="5" />
        </div>
      </div>
<!-- end of aggregate rating -->

 

nel mio sito in Google Search Control ho eliminato tutti gli avvisi che riguardavano "Brand" "aggregateRating" "review"

spero possa essere di aiuto a qualcuno!

  • Like 1
Link to comment
Share on other sites

  On 2/2/2022 at 11:55 PM, micelio said:

ciao Pianetasvapo,

per Prestashop 1.6 io ho risolto così:

Andare in: /iltuodominio/themes/default-bootstrap/product.tpl


Riga 37/39 originale: (questo per il Brand)
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)} ">
    <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 


Riga 37/40 Correggere o sostituire con: 
<div itemscope itemtype="https://schema.org/Product">
    <meta itemprop="url" content="{$link->getProductLink($product)}">
        < meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
        <meta itemprop="name" content="qui-scrivi-il-MARCHIO" />  

 

Andare in: /iltuodominio/themes/default-bootstrap/product-list.tpl

Riga 54 Originale: (Brand per i prodotti nella home)
          <span style="display: none" itemprop="brand"> {$link->getManufacturerLink($product->id_manufacturer)}</span> 

Riga 54 Correggere o sostituire con:  
           <meta itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
            <meta itemprop="name" content="Miceli Moto® Special Supports" /> 

 

AGGREGATE-RATING E REVIEW
Andare in: /iltuodominio/themes/default-bootstrap/product.tpl

Riga 48 aggiungere: (questo codice manca)
<!-- Pull the RatingValue e ReviewCount product scope-->
     <div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
        <meta itemprop=" reviewCount" content="75" /> (.....metti numeri di tuo gusto)
        <meta itemprop="ratingValue" content="4.5" /> (.....metti numeri di tuo gusto)
      </div >
      <div itemprop="review" itemtype="https://schema.org/Review" itemscope>
        <div itemprop="author" itemtype="https://schema.org/Person" itemscope>
          <meta itemprop=" nome" contenuto="Fred Benson" />
        </div>
        <div itemprop="reviewRating" itemtype="https://schema.org/Rating" itemscope>
          <meta itemprop="ratingValue" content="4" />
          <meta itemprop="bestRating" content="5" />
        </div>
      </div>
<!-- fine della valutazione aggregata -->

 

nel mio sito in Google Search Control ho eliminato tutti gli avvisi che riguardano "Brand" "aggregateRating" "review"

spero possa essere di aiuto a qualcuno!

Expand  

Grazie ho aggiornato alla versione 1.7 come consigliato da zio Budda

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...