Jump to content

Cacher la condition du produit ?


Saiff

Recommended Posts

Bonjour à tous,

 

Je suis sur le thème Wine of Superior Quality et j'aimerais savoir comment faire pour complétement cacher voir supprimer la "condition" d'un produit ?

 

Le but serait de ne pas affiché l'état, en principe on n'affiche pas l'état d'un vin....

 

1429520490-capture.png

 

Merci infiniment.

Link to comment
Share on other sites

Bonjour,

 

Dans le fichier "product.tpl" de ton thème il faut supprimer ou commenter les lignes :

{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 product'}</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}
Edited by Divine (see edit history)
  • Like 2
Link to comment
Share on other sites

 

Bonjour,

 

Dans le fichier "product.tpl" de ton thème il faut supprimer ou commenter les lignes :

{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 product'}</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}

 

Super merci beaucoup !

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...