Support

Account

Home Forums Add-ons Gallery Field Disable user ability to edit photo on gallery upload? Reply To: Disable user ability to edit photo on gallery upload?

  • If you’re handling uploads outside the WordPress media library, you can try using CSS or JavaScript to disable the edit functionality. A simple CSS trick would be:

    .your-thumbnail-class { pointer-events: none; }

    This will prevent clicks on the thumbnail. If it’s handled via JavaScript, you might need to override the click event. Let me know if you need help tweaking it!