k4m3n Posted February 12, 2018 Share Posted February 12, 2018 Hi friends, I'm using prestashop 1.6.1.18 and when I add my producst I choose the condition like...new, used and etc...but in the site not showing this condition. Why and how can I enable it? Thank you! Link to comment Share on other sites More sharing options...
musicmaster Posted February 12, 2018 Share Posted February 12, 2018 The relevant template of your theme should contain the code to show the condition. To see what fields are supported you can type {$product|print_r} in your template as debug code (assuming it is a template that has a variable $product). Link to comment Share on other sites More sharing options...
k4m3n Posted February 13, 2018 Author Share Posted February 13, 2018 (edited) Sorry, im nooble. I add this {$product|print_r} in debug.tpl, but nothings happen? This is my product.tpl from the new theme which not show Condition product.tpl Edited February 13, 2018 by k4m3n (see edit history) Link to comment Share on other sites More sharing options...
musicmaster Posted February 13, 2018 Share Posted February 13, 2018 your theme page contains the relevant code {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} It is not clear to me why you won't see that. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now