How to hide Gravity Form field label?
How to hide Gravity Form field Label? I have 2 ways to solve the problem.
Option 1: via CSS code.
#gform_wrapper_1 label.gfield_label { display: none; }
Option 2: via PHP code to be placed on your functions.php.
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );
Happy coding… 🙂