Gravity Forms has a built-in form field setting allowing you to toggle field labels from visible to hidden, but it isn’t enabled by default. The following filter will enable the settings drop-down, and you can then select to hide field labels.
<?php | |
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' ); |
Leave a Reply