[Plugin: WP-Members] id tags for checkbox labels
-
Hi Chad,
On my old registration form I have 39 checkboxes… 3 columns with 13 rows. However, I cannot style it this way because I have no way to move the labels, but I’d rather not have 39 more rows. Any way to move the labels around. I did think of using your fix:
<?php add_filter( 'wpmem_register_form', 'my_register_form_filter' ); function my_register_form_filter( $form ) { /** * The registration form is brought in with $form * You can append to it or filter it */ return $form; } ?>
To write in id tags via this method would be potentially tedious but I will if I have to. Even if the id tag was the same as ‘name’ in the: for=”name” part, that would work for me. Example:
<label for="amenities_ac" id="amenities_ac" class="checkbox">Air Conditioner</label>
Thanks for your help,
-Brian Peterson
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘[Plugin: WP-Members] id tags for checkbox labels’ is closed to new replies.