Jump to content


swhitinger

Member Since 12 Jan 2015
Offline Last Active Jan 13 2015 03:00 PM
-----

Posts I've Made

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

12 January 2015 - 04:58 AM

I followed the instructions to remove conditions but they are still there. What am I doing wrong?

 

    {*    
        
        {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/Re...hedCondition"/>
                    <span class="editable">{l s='Refurbished'}</span>
                {/if}
            </p>
            {/if}
            
            *}