Debyink Posted February 20 Share Posted February 20 Brian, you once helped me with this but can't find the details anywhere on how to do it but also not sure if they would still be applicable to 6.53 as I want to implement it in my new store. I would like to see in the Products inventory page a column which has the sale price (if an item is on sale). In the V4 store there was a column next to the regular price that showed any sale prices, it just seemed totally illogical that V6 couldn't show me what items I have discounted without me having to go look on the storefront and go through all the sale categories. This is my current listing on my other website, as well as the sale price it al so shows the weight column too. Any help much appreciated Quote Link to comment Share on other sites More sharing options...
bsmither Posted February 20 Share Posted February 20 Working on it. In the admin skin template 'products.index.php', find: Near line 109: <td>{$product.price}</td> Add after: <td>{$product.sale_price}</td> Near line 75: <th nowrap="nowrap">{$THEAD.price}</th> Add after: <th nowrap="nowrap">Sale</th> This is a quick solution. As such, this column is not sortable, and reflects only what the product's sale price is specific to the product. That is, this sale price is not a calculation based on the global percentage sale mode. Quote Link to comment Share on other sites More sharing options...
Debyink Posted February 21 Author Share Posted February 21 Brilliant, thank you. Did the same to add the weight and also commented out the translations tab as don't use that and it allowed room for the other 2 columns 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.