Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi

    I haven’t tested it but I think below code should work fine.
    you can add below code in your functions.php to hide the required note

    function remove_required_note( $settings ){
    
    			$settings['req_div_label'] ='';
    			return $settings;
    		}
    add_filter( "ninja_forms_settings","remove_required_note");

    or if you are comfortable with css then you can add below code to your site css

    .ninja-forms-required-items{
    display:none;
    }

    Hi Remery, thank you for using Ninja forms.

    You don’t need to use code. You can just go to the backend -> Forms -> Settings -> Labels. ??

    @aman, don’t offer code without first informing the OP that he/she needs to be using a child theme first.

    As I have mentioned in my recent comment above that the OP doesn’t need to use code as one only has to go to the form plugin’s label page.

    Thread Starter private

    (@remery)

    Great, I’ll check out the backend solution. I was searching for it, and couldn’t find it. What folder is under? I can use the Plugins Editor to find it I think.

    If you go to the admin backend, you’ll see “Forms” as one of the menu choices on the left. Then either hover on “Forms” or click on it then click on Settings. Once you do that, go to Labels.

    Thread Starter private

    (@remery)

    Is this in the Plugins Editor > Ninja Forms? Or in my child theme Editor?

    We typically call it Dashboard instead of Plugins Editor. So go to the Dashboard -> Forms (Ninja Forms) -> Settings -> Labels.

    Thread Starter private

    (@remery)

    Ahhh! I was looking in the CSS files. I got it removed. Thank you!

    You are welcome! ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Required Fields Note – Removal Help’ is closed to new replies.