constructiontop100 New Member Sep 10, 2015 #1 How can we get the Join / Edit custom field description (Table: VL_join_fields: description) to show in the form under the custom field as a "field note"?
How can we get the Join / Edit custom field description (Table: VL_join_fields: description) to show in the form under the custom field as a "field note"?
Basti Administrator Staff member Sep 11, 2015 #2 At this point, this is unfortunately not possible, and is just a little helper text for the admin One workaround would be to use jquery. Open up wrapper.html and find this Code: $(function() { on a new line below we will target the field container and insert some text Code: $('#acf_myfield_container').append('<p class="help-block">my text here</p>'); adjust acf_myfield to match your field name and adjust the text
At this point, this is unfortunately not possible, and is just a little helper text for the admin One workaround would be to use jquery. Open up wrapper.html and find this Code: $(function() { on a new line below we will target the field container and insert some text Code: $('#acf_myfield_container').append('<p class="help-block">my text here</p>'); adjust acf_myfield to match your field name and adjust the text