I'm having the devil of a time getting checkbox inputs to show as table-column elements.
In the responsive_classic and classic templates, the element is "coded" as
Code:
<tr>
<td><?php echo TEXT_GROUP_PUBLIC; ?></td>
<td><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></td>
</tr>
For the bootstrap template, I've wrapped the table with a <div class="table-responsive"> and added the classes "table table-bordered" to the table itself. Then, I modified the checkbox column to read:
Code:
<tr>
<td><?php echo TEXT_GROUP_PUBLIC; ?></td>
<td><div class="custom-control custom-checkbox"><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></div></td>
</tr>
... but still no checkbox is displayed.
Anyone have any suggestions?