How to prevent image dragging in Vision Theme catalog?

How to prevent image dragging in Vision Theme catalog?

David123123
Shopify Partner
71 0 9

Hello, 

 

Is there a way to make it so you can't drag the images onto desktop for the catalog/view all ?

https://artfinia.com/collections/all

 

Reply 1 (1)

CodingSolution
Trailblazer
176 12 10

Use this code

<!-- Add this at the end of the <body> section, just before the closing </body> tag -->
<script>
  // Disable image dragging on the entire document
  document.addEventListener("dragstart", function(event) {
    event.preventDefault();
  });

  // Disable right-click on images (optional)
  document.addEventListener("contextmenu", function(event) {
    if (event.target.tagName === "IMG") {
      event.preventDefault();
    }
  });
</script>
banned