• As previously mentioned, we get validation issues when hidden input fields contain size attributes: ‘Attribute size not allowed on element input at this point.’

    Can we get the size attribute removed for hidden fields?

    Solution previously given:

    case 'dynamichidden':
      $atts['type'] = 'hidden';
      unset( $atts['size'] );
      break;
  • The topic ‘Remove size attribute for hidden fields’ is closed to new replies.