Vlad333 Posted September 13, 2020 Share Posted September 13, 2020 Здравствуйте Google search console ругается на ошибку Ошибка . Задайте значение для одного из следующих элементов данных: "offers", "review" или "aggregateRating". Как это исправить??? версия престы 1.7 Link to comment Share on other sites More sharing options...
wagood Posted September 14, 2020 Share Posted September 14, 2020 Очевидно, что в шаблоне неправильно создана семантическая разметка для google Link to comment Share on other sites More sharing options...
Vlad333 Posted September 14, 2020 Author Share Posted September 14, 2020 8 minutes ago, wagood said: Очевидно, что в шаблоне неправильно создана семантическая разметка для google Это понятно, но как исправить, я не знаю...А вы? Link to comment Share on other sites More sharing options...
wagood Posted September 14, 2020 Share Posted September 14, 2020 Посмотреть код страницы, понять чем разметка в ней отличается от рекомендованного гуглом (https://developers.google.com/search/docs/data-types/product?hl=ru#microdata) и сделать в шаблоне товара соответствующие изменения. Link to comment Share on other sites More sharing options...
Vlad333 Posted September 16, 2020 Author Share Posted September 16, 2020 On 9/14/2020 at 9:59 AM, wagood said: Посмотреть код страницы, понять чем разметка в ней отличается от рекомендованного гуглом (https://developers.google.com/search/docs/data-types/product?hl=ru#microdata) и сделать в шаблоне товара соответствующие изменения. Поможете мне с изменениями? Я вышлю шаблон товара Link to comment Share on other sites More sharing options...
Genom Posted September 16, 2020 Share Posted September 16, 2020 Скорее всего это на странице категории происходит. Поправьте файл product.tpl в themes/ВАШАТЕМА/templates/catalog/_partials/miniatures Link to comment Share on other sites More sharing options...
Vlad333 Posted September 20, 2020 Author Share Posted September 20, 2020 все понятно, что ничего не понятно.... Link to comment Share on other sites More sharing options...
djangell Posted September 27, 2020 Share Posted September 27, 2020 Здравствуйте! Та же беда. В коде вообще не лазил никогда. Нашел код страницы категории, но не понимаю, что куда писать. Подскажите пожалуйста: Quote {** * 2007-2019 PrestaShop and Contributors * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (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: * https://opensource.org/licenses/AFL-3.0 * 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 https://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA *} {block name='product_miniature_item'} <article class="product-miniature js-product-miniature" data-id-product="{$product.id_product}" data-id-product-attribute="{$product.id_product_attribute}" itemscope itemtype="http://schema.org/Product"> <div class="thumbnail-container"> {block name='product_thumbnail'} {if $product.cover} <a href="{$product.url}" class="thumbnail product-thumbnail"> <img src="{$product.cover.bySize.home_default.url}" alt="{if !empty($product.cover.legend)}{$product.cover.legend}{else}{$product.name|truncate:30:'...'}{/if}" data-full-size-image-url="{$product.cover.large.url}" /> </a> {else} <a href="{$product.url}" class="thumbnail product-thumbnail"> <img src="{$urls.no_picture_image.bySize.home_default.url}" /> </a> {/if} {/block} <div class="product-description"> {block name='product_name'} {if $page.page_name == 'index'} <h3 class="h3 product-title" itemprop="name"><a href="{$product.url}">{$product.name|truncate:30:'...'}</a></h3> {else} <h2 class="h3 product-title" itemprop="name"><a href="{$product.url}">{$product.name|truncate:30:'...'}</a></h2> {/if} {/block} {block name='product_price_and_shipping'} {if $product.show_price} <div class="product-price-and-shipping"> {if $product.has_discount} {hook h='displayProductPriceBlock' product=$product type="old_price"} <span class="sr-only">{l s='Regular price' d='Shop.Theme.Catalog'}</span> <span class="regular-price">{$product.regular_price}</span> {if $product.discount_type === 'percentage'} <span class="discount-percentage discount-product">{$product.discount_percentage}</span> {elseif $product.discount_type === 'amount'} <span class="discount-amount discount-product">{$product.discount_amount_to_display}</span> {/if} {/if} {hook h='displayProductPriceBlock' product=$product type="before_price"} <span class="sr-only">{l s='Price' d='Shop.Theme.Catalog'}</span> <span itemprop="price" class="price">{$product.price}</span> {hook h='displayProductPriceBlock' product=$product type='unit_price'} {hook h='displayProductPriceBlock' product=$product type='weight'} </div> {/if} {/block} {block name='product_reviews'} {hook h='displayProductListReviews' product=$product} {/block} </div> <!-- @todo: use include file='catalog/_partials/product-flags.tpl'} --> {block name='product_flags'} <ul class="product-flags"> {foreach from=$product.flags item=flag} <li class="product-flag {$flag.type}">{$flag.label}</li> {/foreach} </ul> {/block} <div class="highlighted-informations{if !$product.main_variants} no-variants{/if} hidden-sm-down"> {block name='quick_view'} <a class="quick-view" href="#" data-link-action="quickview"> <i class="material-icons search"></i> {l s='Quick view' d='Shop.Theme.Actions'} </a> {/block} {block name='product_variants'} {if $product.main_variants} {include file='catalog/_partials/variant-links.tpl' variants=$product.main_variants} {/if} {/block} </div> </div> </article> {/block} Link to comment Share on other sites More sharing options...
djangell Posted September 27, 2020 Share Posted September 27, 2020 Друзья! У кого такая проблема — Вам нужно просто добавить модуль отзывов к товарам. Глупость со стороны гугла полнейшая, но выбора нет. Ошибка уйдет, и появятся предупреждения, которые не страшны. Link to comment Share on other sites More sharing options...
Vlad333 Posted October 7, 2020 Author Share Posted October 7, 2020 On 9/27/2020 at 11:36 PM, djangell said: Друзья! У кого такая проблема — Вам нужно просто добавить модуль отзывов к товарам. Глупость со стороны гугла полнейшая, но выбора нет. Ошибка уйдет, и появятся предупреждения, которые не страшны. ПОпробуем... Спасибо 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