Etienne7000 Posted September 2, 2016 Share Posted September 2, 2016 (edited) Hi, In what file are the lines to delete for product : Etat Neuf Imprimer http://www.caluxia.com/BOUTIQUE/accueil/1-fondant-chocolat.html I inspect the elements Print [imprimer] is the #usefull_link_block li a:hover Etat is the Product condition <p id="product_condition"> <label>État : </label> <link itemprop="itemCondition" href="https://schema.org/NewCondition"> <span class="editable">Neuf</span> </p> Thanks Edited September 2, 2016 by Etienne7000 (see edit history) Link to comment Share on other sites More sharing options...
Etienne7000 Posted September 3, 2016 Author Share Posted September 3, 2016 In product.tpl For Etat delete lines : {if !$product->is_virtual && $product->condition} <p id="product_condition"> <label>{l s='Condition:'} </label> {if $product->condition == 'new'} <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New'}</span> {elseif $product->condition == 'used'} <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/> <span class="editable">{l s='Used'}</span> {elseif $product->condition == 'refurbished'} <link itemprop="itemCondition" href="http://schema.org/RefurbishedCondition"/> <span class="editable">{l s='Refurbished'}</span> {/if} </p> {/if} For print delete lines 216 to 226 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