Hi, Sorry I should have been clearer. In the my-account page orders list page – I can use css but it isn’t a nice way to remove the print button – i.e. I currently do this
.wt_pklist_invoice_print{
display: none!important;
}
I would also like to remove the print button from the admin orders list page too.
<a class="button wc-action-button wc-action-button-wf_pklist_print_document wf_pklist_print_document" href="#1218" aria-label="" title=""></a>
Looking to see how this action can removed. Again using css it is possible but not a nice way to do it.
a.button.wc-action-button.wc-action-button-wf_pklist_print_document.wf_pklist_print_document
{
display: none!important;
}
The issue is really that it is not possible to turn off print buttons and for most people, a download button is probably enough. People can then print happily afterwards if they wish to. For me my template starts to look crowded with two buttons as I have others doing different things in my application.