Divi Gallery Extended Documentation
Search for answers or browse our knowledge base.
Disable right-click from images
Add the following code snippet to the Divi Theme Options >> Integration >> Head
<script>
jQuery('document').ready(function($){
$('body').bind('contextmenu', 'img', function(e) {
return false;
});
});
</script>