Support Forum » User Profile

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Unable to save due to email field is set to required #49167

    If you need to keep working with custom fields while the HTML5 validation issue is being fixed, you can temporarily disable validation by running this JavaScript snippet in your browser console before saving your changes:

    document.querySelectorAll('form').forEach(form => {
      form.noValidate = true;
      form.querySelectorAll('[required]').forEach(el => el.removeAttribute('required'));
    });

    This will allow form submissions without HTML5 validation blocking the save action.

    in reply to: Unable to save due to email field is set to required #49142

    Hello, I'm experiencing the same issue.

    When a field is marked as required and the configuration is saved, any attempt to add, remove, or update custom fields afterward becomes impossible.

    I’ve recorded a short video demonstrating the problem:

    👉 https://www.youtube.com/watch?v=Z4gkSxhKqA8

Viewing 2 posts - 1 through 2 (of 2 total)