Disabling Copy on Live Pages

Hi,
This would help you

Or

<script>
document.addEventListener("contextmenu", (event) => {
  event.preventDefault();
});
</script>

It would prevent the right click possibility. To be put in the footer code, in page
settings

To prevent text selection, in addition:

<script>
document.body.style.userSelect = "none";
document.body.style.webkitUserSelect = "none";
document.body.style.msUserSelect = "none";
document.body.style.mozUserSelect = "none";

document.addEventListener("contextmenu", (event) => {
  event.preventDefault();
});
</script>

3 Likes