Jump to content

Edit: order_conf.html


Recommended Posts

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:

 

GrSUkBF.jpg

 

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

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 by Apium (see edit history)
  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...