An update is coming in 2.9.33 which should resolve this issue. If not, please submit a support ticket to us here: https://ninjaforms.com/contact/
Hi Zachary Skaggs,
Thanks for the update. This is working fine for me.
Love this plugin.
Hi there, I have just installed Ninja Forms (the latest version) and my text fields are not appearing. Can someone please help?!
There are fields called Step 1 and Step 2 that are not appearing at all.
http://shuswapfestival.com/test/
Did you ever get this resolved? It is also happening to me, as soon as I collapse the TEXT FIELD meta box and expand it again, the content is gone. The LABEL doesn’t show on the front end either.
WP 4.4.2
Ninja 2.9.33
I have the same problem. I edited the desc.php file to have it display the field’s label instead of it’s value. It’s a quick hack but it helps. Of course, I have to add the code every time NF is updated.
Original Line 86
<<?php echo $desc_el;?> class="<?php echo $field_class;?>" id="ninja_forms_field_<?php echo $field_id;?>_div_wrap" style="<?php echo $display_style;?>" rel="<?php echo $field_id;?>"><?php echo $default_value;?></<?php echo $desc_el;?>>
Modified Line 86
<<?php echo $desc_el;?> class="<?php echo $field_class;?>" id="ninja_forms_field_<?php echo $field_id;?>_div_wrap" style="<?php echo $display_style;?>" rel="<?php echo $field_id;?>"><?php echo $data['label'];/* EDITED was $default_value;*/?></<?php echo $desc_el;?>>