I define a "Checkbox" Custom Field with "RED|GREEN|BLUE| on "Possible Values" (it's just an example)
How can I show one check below the other instead of one next to the other?
Thanks.
Help: Custom field "Checkbox".
Moderators: Developer, Contributor
-
Skellington
- Posts: 8
- Joined: 10 Aug 2005, 21:08
-
Guest
in core/custom_fields_api.php, function print_custom_field_input()
change:
to
[line 1112 or so
change:
Code: Select all
echo '<input type="checkbox" name="custom_field_' . $t_id . '[]"';
Code: Select all
echo (@++$i == 1? ' ': '') . '<input type="checkbox" name="custom_field_' . $t_id . '[]"';