Search the Community
Showing results for tags 'microdata'.
-
Does anyone have idea how to setup micro data in facebook pixel addon?
- 1 reply
-
- facebook pixel
- microdata
-
(and 1 more)
Tagged with:
-
Hi guys, i need your help, i'm running prestashop 1.6.0.6 and i have a problem with the productcomment module (version 3.5.1). the module is working perfectly but when i analyze the google snippets with google structured data testing tool, i get 2 errors for all the products of my shop that have not reviews yet: the field ratingValue cannot be empty. It's necessary to specify ratingCount or reviewCount. this problem is because google can't see the ratingvalue and ratingcount when there are not reviews... i know that this problem is linked to the code specified into the file: productcomments-extra.tpl into the productcomment folder of my theme (default boot-strap). i need to modify the aggregateRating [AggregateRating] with a condition into that code that show google a certain value when there are no reviews yet and doesn't leave empty fields, i tried everything but i didn't success, could you please check it ???? here my productcomments-extra.tpl {* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2014 PrestaShop SA * @version Release: $Revision$ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if (!$content_only && (($nbComments == 0 && $too_early == false && ($is_logged || $allow_guests)) || ($nbComments != 0)))} <div id="product_comments_block_extra" class="no-print" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> {if $nbComments != 0} <div class="comments_note clearfix"> <span>{l s='Rating' mod='productcomments'} </span> <div class="star_content clearfix"> {section name="i" start=0 loop=5 step=1} {if $averageTotal le $smarty.section.i.index} <div class="star"></div> {else} <div class="star star_on"></div> {/if} {/section} <meta itemprop="worstRating" content = "0" /> <meta itemprop="ratingValue" content = "{if isset($ratings.avg)}{$ratings.avg|round:1|escape:'html':'UTF-8'}{else}{$averageTotal|round:1|escape:'html':'UTF-8'}{/if}" /> <meta itemprop="bestRating" content = "5" /> <span class="hidden" itemprop="ratingValue">{$averageTotal}</span> </div> </div> <!-- .comments_note --> {/if} <ul class="comments_advices"> {if $nbComments != 0} <li> <a href="#idTab5" class="reviews"> {l s='Read reviews' mod='productcomments'} (<span itemprop="reviewCount">{$nbComments}</span>) </a> </li> {/if} {if ($too_early == false AND ($is_logged OR $allow_guests))} <li> <a class="open-comment-form" href="#new_comment_form"> {l s='Write a review' mod='productcomments'} </a> </li> {/if} </ul> </div> {/if} <!-- /Module ProductComments --> let me know what i have to do to be able to have no errors into google data structure when i have not reviews. p.s: the products with reviews have no errrors at all because all requested fields of AGGREGATERATING are correctly filled
- 2 replies
-
- prestashop
- microdata
- (and 4 more)
-
Hello tous, (Ce tips concerne le thème de base de Prestashop 1.6) Après plusieurs heures de recherche, j'ai finalement trouvé pourquoi l'outil de test de données structurées du Google Webmaster Tools indiquait des erreurs. Tout d'abord, pour la page d'un produit (product.tpl) c'est au niveau de la ligne 181 <span class="editable" itemprop="condition">{$smarty.capture.condition}</span> Il se trouve que la "condition" d'un produit n'est pas compatible avec Schema.org, ce qui donne une erreur : Erreur : Page contains property "condition" which is not part of the schema. Ensuite, du côté de product-list.tpl, c'est cette fois-ci l'erreur "Error: Incomplete microdata with schema.org" qu'on découvre. Pour cette erreur, c'est simplement qu'il manque le tag du prix dans le second scope Offer à la ligne 158: <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="availability"> {if ($product.allow_oosp || $product.quantity > 0)} <span class="{if $product.quantity <= 0}out-of-stock{else}available-now{/if}"> <link itemprop="availability" href="http://schema.org/InStock" />{if $product.quantity <= 0}{if $product.allow_oosp}{$product.available_later}{else}{l s='Out of stock'}{/if}{else}{if isset($product.available_now) && $product.available_now}{$product.available_now}{else}{l s='In Stock'}{/if}{/if} </span> {elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)} <span class="available-dif"> <link itemprop="availability" href="http://schema.org/LimitedAvailability" />{l s='Product available with different options'} </span> {else} <span class="out-of-stock"> <link itemprop="availability" href="http://schema.org/OutOfStock" />{l s='Out of stock'} </span> {/if} </span> Donc rajouter simplement dans le scope Offer: <span itemprop="price" class="price product-price "> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} </span> J'espère que ça pourra en aider certain
- 12 replies
-
- 2
-
- rich snippets
- micro data
-
(and 4 more)
Tagged with:
-
I threw this topic together to get a consensus and brainstorm going on how to best change the structure of the default-bootstrap category.tpl microdata markup. I've been talking to the project lead who also works for google and a representative of goodrelations.org on this github issue. Nested Categories The problem I found puzzling is how to express nested categories and the products. Do commits to PrestaShop core theme and then respond to my github issue and ask them to review markup and integrate any of their recommendations. Not looking for any credit. Just others who understand the smarty variables involved and recreate the structure necessary so that everyone using bootstrap benefits from our open source collaboration. Your Mission If You So Choose Reply if you don't know what schema.org can do for rich snippets and structured data. Reply if you want to learn theme coding for structured data. Reply if you are the grand [spam-filter] of all things code. http://forge.prestashop.com/browse/PSCSX-5694 is the original issue tracker Goal Completion Let's shoot for final commit by 31 Oct 2015
-
I have this problem and I see another post but is solved and closed. My question now is. How you do this "Google Webtools" strategy? Are you using Data Highlighting the product pages on you Prestashop or you create a separated html page for each product? I was doing this last option since Google on Structured Data this " We do not detect any structured data on your site." I want to know what or how are you doing the SEO for your Prestashop 1.6 stores? If you have samples or links to learn more... I will very interested. I have 3 month with my store running and sales are very very low.... but VERY... ok? My website is www.ohmyicons.com ... I think the product are attractive. I'm selling this products from many years... but I was using Zencart. Now, after my conversion to PS sales drop dramatically. I would like to know your opinion and critics. I need sales and I'm looking to fix the errors. My big mistake was never does SEO on my products... so I start with this a couple weeks ago. DO you have any idea when I would see the results? 3 month? 6?... 9? Any idea? Thanks!
-
Has anyone worked on Breadcrumbs? What i am trying to accomblish in order to take advantage of it on seo is: a. use headings (h2,h3,h4,h5 ) on each link {seo boost} b. make all links linkable (even for last one to link on current page ) c. add microdata [ https://support.google.com/webmasters/answer/185417 ] Any help on that ? I am working on breadcrumb.tpl but i am not rearlly sure i understand how the loop works. Any help is more than welcome.
-
Il modulo Microdata permette di migliorare il riferimento e la visibilità del vostro negozio aggiungendo dei micro dati sotto forma di codice HTML nelle pagine dei vostri prodotti. Questi estratti arricchiti o rich snippets si declinano sotto varie forme in base ai prodotti o ai servizi che proponete visualizzando per esempio la taglia, il peso, i colori, la durata, i voti, ecc che permettono ai motori di ricerca di affinare i risultati delle ricerche in base alle richieste ed alle parole chiavi. Permettono anche una messa in valore delle specifiche dei vostri prodotti nei SERP (risultati dei motori di ricerca), facendo esplodere al contempo il tasso di clic. I Microdata o Microdati Sono presi in considerazione dai motori di ricerca ed in particolare Google dal 2009, I MicroData o MicroDati, chiamati anche Rich Snippets o ancora dati strutturati, gli estratti arricchiti sono diventati nella norma (preferiti ed addottati da Google, Yahoo!, Bing, Yandex) e prendono un posto di sempre maggiore importanza nel riferimento di un negozio online, più particolarmente con l’esplosione dei comparatori di prezzi ed altri Google Shopping. Esempi: Ricette di cucina (imagine, voto, numero di opinioni) Eventi (Voto, data della manifestazione manifestation) Brani Musicali (Titolo, album, durata) Maggiori informazioni: http://presta-seo.eu/negozio/microdata-prestashop/
-
Google Rich Snippets — les quelques lignes de texte qui apparaissent sous chaque résultat de la recherche — sont conçus pour donner aux utilisateurs un sentiment pour ce qui est sur la page et pourquoi il est pertinent de leur requête. Ce module ajoute dans la page du produit, les microdonnées informations détaillées destinées à aider les utilisateurs avec des requêtes spécifiques (description du produit, nom, etc.) Caractéristiques : Configurer la page de google Multilingue Croix navigateur Lien: votre signature Nous n'avons pas de place pour ajouter d'autres modules Visitez notre site pour les dernières versions des modules et des modules plus libres www.catalogo-onlinersi.net
- 43 replies
-
- rich snippets
-
(and 1 more)
Tagged with:
-
Hola, estoy estudiando la posibilidad de insertar, microformatos a los breadcrumbs de mi prestashop 1.5.3.1, alguien lo ha conseguido? Un saludo