Please help me find where I can remove this "See Attached" from the print invoice page at check out.
Announcement
Collapse
No announcement yet.
Print Invoice page at check out
Collapse
X
-
The Printable Invoice on the thank you page after checkout is checkout-step4.html. Here are the highlighted blocks you are looking for:
<div class="shippingInfoBlock">
<!--START: shipping_info-->
<div class="label">[invoice_shipmethod]</div>
<div class="text">[oshipmethod] ([totalweight]lbs.)</div>
<div class="clear"></div>
<!--START: trackingcode-->
<div class="label">[invoice_trackingnum]:</div>
<div class="text"><a href="shiptracking.asp?trackingnumber=[trackingcode]" target="new">[trackingcode]</a></div>
<div class="clear"></div>
<!--END: trackingcode-->
<!--START: oshippeddate-->
<div class="label">[invoice_shippeddate]</div>
<div class="text">[oshippeddate]</div>
<div class="clear"></div>
<!--END: oshippeddate-->
<!--END: shipping_info-->
<!--START: opaymethod-->
<div class="label">[invoice_paymenttype]</div>
<div class="text">[opaymethod]</div>
<div class="clear"></div>
<!--END: opaymethod-->
<!--START: coupon-->
<div class="label">[invoice_discounts]</div>
<div class="clear"></div>
<div class="text">[invoice_coupon]: [coupon] - [coupondiscount]</div>
<div class="clear"></div>
<!--END: coupon-->
</div>
Hope this helps and is what you are looking for.
Thanks,
Shaun
Comment