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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.