Pedro J Posted June 25, 2020 Share Posted June 25, 2020 (edited) Buenas comunidad!!! Versión Prestashop 1.7 Estoy intentando quitar todos los itemprops e itemscope relacionado con los productos que aparecen como listado en las diferentes categorías. Motivo: Deseo mostrar en los resultados de Google los Schemas Faq Questions (Google no muestra estos resultados en las páginas con productos :))(Probado correctamente en versión Prestashop 1.6 pero me pierdo con los ficheros del 1.7) Un ejemplo... Supongo que se hace desde el fichero de mi tema... /templates/catalog/_partials/miniatures/product-list.tpl El código que he tocado en este fichero es... Por un lado... <article class="product-miniature product-miniature-default product-miniature-list js-product-miniature" data-id-product="{$product.id_product}" data-id-product-attribute="{$product.id_product_attribute}" itemscope itemtype="https://schema.org/Product" > Por otro lado... {block name='product_price_and_shipping'} {if $product.show_price} <div class="product-price-and-shipping" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> {if isset($currency.iso_code)}<meta itemprop="priceCurrency" content="{$currency.iso_code}">{/if} {hook h='displayProductPriceBlock' product=$product type="before_price"} <span itemprop="price" class="product-price" content="{$product.price_amount}">{$product.price}</span> {if $product.has_discount} {hook h='displayProductPriceBlock' product=$product type="old_price"} <span class="regular-price">{$product.regular_price}</span> {/if} {hook h='displayProductPriceBlock' product=$product type='unit_price'} {hook h='displayProductPriceBlock' product=$product type='weight'} {if $product.has_discount} {hook h='displayCountDown'} {/if} </div> {/if} {/block} Sin embargo tras haber borrado caché en Prestashop y navegador siguen saliéndome los itemprops en el listado de productos. ¿Alguna idea o consejo? Gracias. Edited June 25, 2020 by Pedro J (see edit history) Link to comment Share on other sites More sharing options...
Pedro J Posted June 29, 2020 Author Share Posted June 29, 2020 Buenas. Al final se contrató a un programador para realizar esta tarea. Gracias. 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