Copernican Theory Posted October 7, 2016 Share Posted October 7, 2016 I'd like to remove two items (Discounts and Gift-wrapping) plus their surrounding boxes in the order_conf.html file. I don't want to mess anything up by just hacking away at it. Here's what I'd like to remove: I've figured out how to remove the words but am unsure about their container boxes. I don't want to mess up any formulas (not sure if that's how this works so therefore my post). Thank you Link to comment Share on other sites More sharing options...
Apium Posted October 7, 2016 Share Posted October 7, 2016 (edited) In 1.6.1.7, on lines 152-207 in order_conf.html, you'll find, <tr class="conf_body"> <td bgcolor="#f8f8f8" colspan="4" style="border:1px solid #D6D4D4;color:#333;padding:7px 0"> <table class="table" style="width:100%;border-collapse:collapse"> <tr> <td width="10" style="color:#333;padding:0"> </td> <td align="right" style="color:#333;padding:0"> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>Kortingen</strong> </font> </td> <td width="10" style="color:#333;padding:0"> </td> </tr> </table> </td> <td bgcolor="#f8f8f8" colspan="4" style="border:1px solid #D6D4D4;color:#333;padding:7px 0"> <table class="table" style="width:100%;border-collapse:collapse"> <tr> <td width="10" style="color:#333;padding:0"> </td> <td align="right" style="color:#333;padding:0"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {total_discounts} </font> </td> <td width="10" style="color:#333;padding:0"> </td> </tr> </table> </td> </tr> <tr class="conf_body"> <td bgcolor="#f8f8f8" colspan="4" style="border:1px solid #D6D4D4;color:#333;padding:7px 0"> <table class="table" style="width:100%;border-collapse:collapse"> <tr> <td width="10" style="color:#333;padding:0"> </td> <td align="right" style="color:#333;padding:0"> <font size="2" face="Open-sans, sans-serif" color="#555454"> <strong>Cadeauverpakking</strong> </font> </td> <td width="10" style="color:#333;padding:0"> </td> </tr> </table> </td> <td bgcolor="#f8f8f8" colspan="4" style="border:1px solid #D6D4D4;color:#333;padding:7px 0"> <table class="table" style="width:100%;border-collapse:collapse"> <tr> <td width="10" style="color:#333;padding:0"> </td> <td align="right" style="color:#333;padding:0"> <font size="2" face="Open-sans, sans-serif" color="#555454"> {total_wrapping} </font> </td> <td width="10" style="color:#333;padding:0"> </td> </tr> </table> </td> </tr> If you remove these lines (make sure to save a copy of the file before editing!), the rows should be gone! Edited October 7, 2016 by Apium (see edit history) 1 Link to comment Share on other sites More sharing options...
Copernican Theory Posted October 7, 2016 Author Share Posted October 7, 2016 Perfect! Liked and Solved! Thank you. 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