That would be great if there was a way to add comments only if you sign in for the comments widget.
There is a CSS workaround available to hide the text field, though it’s not exactly what is needed.
.es-header-container:has(.es-header-sign-in) + .es-widget-form-container {
display: none;
}
HS723685