Jump to content


No.9

Member Since 07 Jun 2018
Offline Last Active Jun 10 2018 05:46 AM
-----

#47 How to remove "conditions" of product (new, refubrished etc.) form pr...

Posted by vekia on 04 April 2014 - 10:22 PM

you have to modify product.tpl file located in your theme directory, there is a code like:

			{capture name=condition}				{if $product->condition == 'new'}{l s='New'}				{elseif $product->condition == 'used'}{l s='Used'}				{elseif $product->condition == 'refurbished'}{l s='Refurbished'}				{/if}			{/capture}			<p id="product_condition"{if !$product->condition} style="display: none;"{/if}>				<label>{l s='Condition'} </label>				<span class="editable" itemprop="condition">{$smarty.capture.condition}</span>			</p>

just remove it. and you will remove "condition" from your product page.

 

remember about clearing cache in some cases it's necessary to see the changes that you applied to tpl files

 

enjoy :)