aegypius3 Posted October 3, 2012 Share Posted October 3, 2012 I want to add another condition to product, new, used, refurbished and faulty, I found how to do it in old versions, but not in Pestashop 1.5... Help please Link to comment Share on other sites More sharing options...
shacker Posted October 9, 2012 Share Posted October 9, 2012 edit the admin/tabs/adminproducts.php, and find <option value="new" '.($obj->condition == 'new' ? 'selected="selected"' : '').'>'.$this->l('New').'</option> <option value="used" '.($obj->condition == 'used' ? 'selected="selected"' : '').'>'.$this->l('Used').'</option> <option value="refurbished" '.($obj->condition == 'refurbished' ? 'selected="selected"' : '').'>'.$this->l('Refurbished').'</option> you can add a extra option 1 Link to comment Share on other sites More sharing options...
Recommended Posts