How to hide “All fields marked with an * are required” in ninja forms?

To hide “All fields marked with an * are required” in ninja forms, add the below custom CSS code to your website’s stylesheet. Here’s how you can do it:

  1. Log in to your WordPress dashboard and go to Appearance > Customize > Additional CSS.
  2. Paste the below CSS code into the Additional CSS box.
  3. Click on the “Publish” button to save your changes.
.nf-form-fields-required {
  display: none;
}

This code will hide the above sentence.