can I make it so my website won't allow someone to download images from a gallery???

scott_m_seifert
2 Posts
scott_m_seifert posted this 17 February 2023
Ask a Question

Can I make it so my website won't allow someone to download images from a gallery???

Can I make it so my website won't allow someone to download images from a gallery???
Vote to pay developers attention to this features or issue.
3 Replies
Order By: Standard | Newest
MerlinAZ
2689 Posts
MerlinAZ posted this 17 February 2023

You can google putting code in that disables Right-click, but to be honest, since anyone can screenshot any image, they can be stolen.
You can use copyright text over the images but it ruins them.

You can google putting code in that disables Right-click, but to be honest, since anyone can screenshot any image, they can be stolen. You can use copyright text over the images but it ruins them.
scott_m_seifert
2 Posts
scott_m_seifert posted this 17 February 2023

got it thank you...

got it thank you...
Support Team
Support Team posted this 20 February 2023

Hi,

Thanks for contacting us

The following script removing the option of right-click button, to prevent your visitors from saving the images, go to Site Settings >> HTML >> Additional Head HTML
and paste the following code.

<script> document.oncontextmenu = cmenu; function cmenu() { return false; } </script>

...................................................
Sincerely,
Ahmad.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, Thanks for contacting us The following script removing the option of right-click button, to prevent your visitors from saving the images, go to ***Site Settings >> HTML >> Additional Head HTML*** and paste the following code. <script> document.oncontextmenu = cmenu; function cmenu() { return false; } </script> ................................................... Sincerely, Ahmad. Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments