How can we stop users to print webpage using different methods?
Add such block to your CSS
@media print { body { display: none; } }
This should hide all content when printing.