Disabling Right-Click on Specific Pages

If you have a premium account you can do it as follows:
Go the the site dashboard > Settings > Custom Code > Add Custom code

Put the following snippet to the head:

<script>
document.addEventListener('contextmenu', event => event.preventDefault());
</script>

Set the pages you want to apply it to.