Jump to content

checkbox list from loop - how to set a default?


jarvis

Recommended Posts

Hi All,

 

I've a loop which lists a series of options as checkboxes. What I'd like to do is set 1 as a default. But I've no idea how to do it!?

 

Here's the code:

<?php $i = 0; ?>
<?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?>
<input type="checkbox" id="field_reg_groups_<?php echo $i; ?>" name="field_reg_groups[]" value="<?php bp_group_id(); ?>" /><?php bp_group_name(); ?>
<?php } ?>
<?php $i++; ?>

Any help is much appreciated

 

TIA

The whole block of code is

				<?php $i = 0; ?>
			<?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?>
				<?php if ( bp_get_group_status() == ('public' || 'private')) { ?>
				<li class="reg_groups_item">
					<input type="checkbox" id="field_reg_groups_<?php echo $i; ?>" name="field_reg_groups[]" value="<?php bp_group_id(); ?>" /><?php bp_group_name(); ?>
				</li>
				<?php } ?>
			<?php $i++; ?>
			<?php endwhile; /* endif; */ ?>
			<?php else: ?>
			<p class="reg_groups_none">No selections are available at this time.</p>
			<?php endif; ?>

it does the job

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.