Jump to content

[SOLVED] how to remove "Condition: NEW"


Recommended Posts

condition new / old is not configurable under preferences > products tab.

 

you have to remove it manually from .tpl file.

			{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}
Link to comment
Share on other sites

sorry i thought that i already mentioned it.

you have to modify product.tpl file located in your theme directory

 

/themes/YOUR_THEME/product.tpl

where YOUR_THEME is a directory name of template that you actually use

Link to comment
Share on other sites

remove also this:

		<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>

after that everything will be allright :-)

  • Like 2
Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...