Tagged: woocommerce
I’d like to allow customers to print their receipt after they make an order. I have added the button but the page still includes the logo, breadcrumbs, social and a bunch of white space. Is there anyway that I can have all of that removed when I print?
Hey isaaccolavecchio,
Please go to enfold/css/print.css file and make the changes you would like to make :)
Best regards,
Jordan Shannon
Okay. I messed with it as much as I know how but I was still unable to remove the breadcrumb on the top as well as the whitespace. Is there a place I can look to find that within the code?
Hi,
Try adding this to the print.css file:
.title_container .breadcrumb{
display:none!important;
}
Best regards,
Jordan Shannon
Thank you!
That removed the breadcrumbs but the lines above and below them are still there as well as a bunch of whitespace at the top.
http://northwood.webmarketing.services/wp-content/uploads/2018/01/Screen-Shot-2018-01-17-at-11.15.07-AM-2.png
Hi,
Add this as well to print.css
#header,.title_container{
display:none!important;
}
#main.all_colors{
padding-top:0px!important;
}
Best regards,
Jordan Shannon