Disallow images download
complete
Sarah Rockower Studio
Since we upload such large files for our artwork, it would be great if people were unable to download them.
Log In
Andrew Smith
marked this post as
complete
We've added a 'Download Images' website setting (https://pro.artcloud.com/#/website/settings) that can be turned off to prevent saving images on your website.
Kathryn Cárdenas
Andrew Smith Thank you for doing this! However I noticed that we could still download images from the Marketplace. Is it possible to also disable that function too in the Marketplace? I had to turn off visibility of some artworks from the Marketplace to mitigate this issue for now.
Andrew Smith
Merged in a post:
Disable right-clicking (or command-clicking) on images in the Marketplace and Website
Kathryn Cárdenas
It would be great if right-clicking or saving inventory images from the website is disabled, to prevent viewers from downloading a high-resolution copy of the artwork. They can still do a screenshot of course, but at least the image quality will be different compared to the original file.
Kathryn Cárdenas
While there's a code shared below for websites, it doesn't work in the Marketplace. So would appreciate it if the team could disable right-clicking in the Marketplace too!
Ron Stevenson
Here's code I wrote to do that, placed in Website | Settings | Global Scripts:
<script>
$("body").on("contextmenu", "img", function(e) {
return false;
});
</script>
Kathryn Cárdenas
Ron Stevenson Thank you! Will this work in the Marketplace too?
Ron Stevenson
Kathryn Cárdenas Golly, I have no idea, but doubt it. That code is placed in my website's settings, and I'm sure the Marketplace uses different settings.