How can I prevent content copying on my product descriptions?

Hi @Kaseijin ,

You can use JS to block this. Please go to assets > theme.js file, find ‘sections.register’ and add code here:

Code:

window.addEventListener('copy cut', function (e) { 
    e.preventDefault(); 
    alert('Block copyright');
  }, false);

You can change the notification content to your liking.

Hope it helps!

1 Like