• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

how to ?on image no click allowed.

knova15

💖 Chevereto Fan
HI

I started my website just now and removed a few bits like the embed code tab and download button. But the new thing would be to "disallow" anything with the images. at the moment i can click on the image and it loads up the image file it self. I would like to protects the images from being downloaded.

What do i need to modify for this ?

Any help is welcome !

THank you
 
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com)

var message="Function Disabled!";

///////////////////////////////////

trying to get something like this to work
 
Just bind an event to the right click handler and do an event prevention.
 
var message="";

function clickIE()

{if (document.all)
{(message);return false;}}

function clickNS(e) {
if
(document.layers||(document.getElementById&&!document.all))
{
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
else
{document.onmouseup=clickNS;document.oncontextmenu =clickIE;}

document.oncontextmenu=new Function("return false")
 
Back
Top