bos Posted May 29, 2015 Share Posted May 29, 2015 Is it possible to add a fourth option? I would like to have "For parts / repair", "Not working" or similar. Quote Link to comment Share on other sites More sharing options...
bsmither Posted May 29, 2015 Share Posted May 29, 2015 These options are hard-coded in the skin template. In my opinion, you can add whatever you want here.In the file /admin/skins/default/templates/products.index.php, near line 162:<option value="new" {if $PRODUCT.condition == 'new'}selected="selected"{/if}>{$LANG.catalogue.condition_new}</option> <option value="used" {if $PRODUCT.condition == 'used'}selected="selected"{/if}>{$LANG.catalogue.condition_used}</option> <option value="refurbished" {if $PRODUCT.condition == 'refurbished'}selected="selected"{/if}>{$LANG.catalogue.condition_refurbished}</option> Add whatever else using this same format.Of course, there will not be the language strings for any other condition, so you will need to add phrases to the language pack your store is using. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.