Gravity Forms – RMA Count

One way to achieve that is to use the gform_pre_render hook. I once did something similiar to this on a real site. add_action( ‘gform_pre_render’, ‘show_content_before_fields’ ); function show_content_before_fields( $form ) { $custom_field = new GF_Field_HTML(); // temporary field object to hold our custom html $custom_field->id = 0; // maybe unnecessary, can’t remember if really needed … Read more