You cannot disable the print buttons of the browser, however you can use print @media CSS to completely hide some parts or the whole page from printing. For example, you can use CSS, for example:
@media print {
html, body {
display: none;
}
}
source
share