Jump to content


DArnaez

Member Since 12 Sep 2014
Offline Last Active Oct 30 2014 03:47 PM
-----

Posts I've Made

In Topic: How to remove "conditions" of product (new, refubrished etc.) form pr...

30 October 2014 - 03:47 PM

Hi Vekia. A question from a begginer... In my PS 1.6.09 this is the fragment in product.tpl that say "Condition"

	{if $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}

Can you tell me precisely what lines I need to delete without to make a mess in the store? Someone advice me to delete the "Condition" filter but I don't know how. SO I want to start deleting the "condition" state in my products since are all digitals. Thanks!