Is there a way to right click protect my photos

try this. Put this in your custom code area :

<script>
$('img').bind('contextmenu', function(e) {
    return false;
});
</script>

source: javascript - Disabling right click on images using jquery - Stack Overflow

5 Likes