1👍
✅
You could set the help_text
of the concerned field to None
:
def __init__(self, *args, **kwargs):
super(UserRegisterForm, self).__init__(*args, **kwargs)
self.fields['username'].help_text = None
Source:stackexchange.com