GF custom field title and input field are not displayed
-
Hi,
First, thanks for this plugin this is cool. And I’m amongst who wish that this plugin continues.
I just noticed that the field title and input field are not displayed when I do these steps on how to create a custom field in GF:
https://wpsmith.net/2011/plugins/how-to-create-a-custom-form-field-in-gravity-forms-with-a-terms-of-service-form-field-example/I go through gf_wysiwyg_class.php and changed the following lines to address the issue above:
line 19: specify add_filter $priority and $accepted_args parameters
add_filter('gform_field_type_title', array(&$this, 'wysiwyg_title'),10, 2);
line 63: add $title as first paramater
function wysiwyg_title($title, $type) {
line 67: add return as default
return $title;
line 104 (105 after inserting line 67): return default
return $input;
I hope this will help others and this issue be fixed in next release.
Thanks.
Spot
- The topic ‘GF custom field title and input field are not displayed’ is closed to new replies.