• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • 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