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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' ); |
Leave a Reply