I have a page which contains at the bottom 3 buttons with the following coding:
You can use CSS @media queries. For instance:
@media
@media print { #printPageButton { display: none; } }
Print
The styles defined within the @media print block will only be applied when printing the page. You can test it by clicking the print button in the snippet; you'll get a blank page.
@media print