Pianetasvapo Posted August 27, 2020 Share Posted August 27, 2020 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 More sharing options...
ziobudda Posted August 27, 2020 Share Posted August 27, 2020 Ciao, il tuo template non inserisce quei due campi schema.org. Devi modificare il template. M. 1 Link to comment Share on other sites More sharing options...
Pianetasvapo Posted August 27, 2020 Author Share Posted August 27, 2020 17 minutes ago, ziobudda said: Ciao, il tuo template non inserisce quei due campi schema.org. Devi modificare il template. M. Ciao mi potresti indicare in che modo? Grazie Link to comment Share on other sites More sharing options...
ziobudda Posted August 27, 2020 Share Posted August 27, 2020 https://www.prestashop.com/forums/topic/1016774-risolto-devi-specificare-offers-review-o-aggregaterating/ Link to comment Share on other sites More sharing options...
Pianetasvapo Posted August 27, 2020 Author Share Posted August 27, 2020 1 minute ago, ziobudda said: https://www.prestashop.com/forums/topic/1016774-risolto-devi-specificare-offers-review-o-aggregaterating/ Questo l'avevo già visto ma la risoluzione è per la versione 1.7, la mia è 1.6.1 Link to comment Share on other sites More sharing options...
ziobudda Posted August 27, 2020 Share Posted August 27, 2020 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. Link to comment Share on other sites More sharing options...
Pianetasvapo Posted August 27, 2020 Author Share Posted August 27, 2020 45 minutes ago, 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. 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 More sharing options...
Pianetasvapo Posted January 1, 2021 Author Share Posted January 1, 2021 nessuno che abbia una soluzione? Come mai accade solo per determinati prodotti e non per tutti? Link to comment Share on other sites More sharing options...
micelio Posted February 2, 2022 Share Posted February 2, 2022 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 REVIEWAndare 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 More sharing options...
micelio Posted February 2, 2022 Share Posted February 2, 2022 On 1/1/2021 at 4:03 PM, Pianetasvapo said: nessuno che abbia una soluzione? Come mai accade solo per determinati prodotti e non per tutti? 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! 1 Link to comment Share on other sites More sharing options...
Pianetasvapo Posted February 3, 2022 Author Share Posted February 3, 2022 7 hours ago, 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! Grazie ho aggiornato alla versione 1.7 come consigliato da zio Budda 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