Hello,
It would be really useful if I could add description text for custom fields. This text would appear on the admin page probably in small italics underneath the provided Field Label. Currently, I have to access the field by the full label in the code. For example
$fields = tribe_get_custom_fields();
$show_accommodations_info = $fields["Hide Accommodations Info Links? (shown by default)"] != "hide";
This is kind of awkward, especially if I need long/detailed help text. And, it is error prone – if I want to change the help text, I have to change the Field Label, which means I have to change any code that accesses it in the array.
It would be helpful if I could access the $fields array another way, such as:
$fields = tribe_get_custom_fields();
$show_accommodations_info = $fields["_ecp_custom_10[]"] != "hide";
This would alleviate the potential error caused by changing the “Field Label” text, though it would still be useful to have a description that is separate from the label.
Thanks!