saikat Posted January 2, 2011 Share Posted January 2, 2011 Prestashop 1.4 has ability to define whether the product is new, used or refurbished.How can i add 2 extra option like Bulk, Retail ?If I select new, used or refurbished but its not showing on product page. How can i display product condition (New/bulk/refurbished etc) nearby price in product page? Link to comment Share on other sites More sharing options...
Martin C Posted January 2, 2011 Share Posted January 2, 2011 It is hardcoded in the core files :wow: tabs: AdminProducts.phpclasses: Product.phpIn adminproduct you wil find: '.$this->l('New').' '.$this->l('Used').' '.$this->l('Refurbished').' After this block add: '.$this->l('Retail').' Link to comment Share on other sites More sharing options...
saikat Posted January 2, 2011 Author Share Posted January 2, 2011 Yea i have done this way before.But if i select new option like "retail" and then save and stay then it goes to 1st one ("New") automatically.And how can i display/show product condition in product page for customer? Link to comment Share on other sites More sharing options...
saikat Posted February 6, 2011 Author Share Posted February 6, 2011 I have found a solution.You can display product condition in product page that you select during add product.Place that code in the position where you want to display inside product.tpl <!-- condition--> {if $product->condition} {l s='Condition :'} {$product->condition|escape}{/if} Link to comment Share on other sites More sharing options...
Poljotuhren.de Posted September 20, 2011 Share Posted September 20, 2011 Wow, that was hard to find this answer somehow. Thanks... Where are the language files located for this? 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