BuddyPress Registration Groups
-
I love this plugin, but I need to change it from a check box to the drop down list. I have over 60 groups. Please help. Where do I need to do to edit the code
function bp_registration_groups(){
/* list groups */ ?>
<div class=”register-section reg_groups”>
<h3 class=”reg_groups_title”>Running Group:</h3>
<p class=”reg_groups_description”>Select a Running Group in your area:</p>
<ul class=”reg_groups_list”>
<?php $i = 0; ?>
<?php if ( bp_has_groups(‘type=alphabetical&per_page=99999’) ) : while ( bp_groups() ) : bp_the_group(); ?>
<?php if ( bp_get_group_status() == (‘public’)) { ?><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(); ?><?php } ?>
<?php $i++; ?>
<?php endwhile; /* endif; */ ?>
<?php else: ?>
<p class=”reg_groups_none”>No selections are available at this time.</p>
<?php endif; ?></div>
<?php }https://www.ads-software.com/extend/plugins/buddypress-registration-groups-1/
- The topic ‘BuddyPress Registration Groups’ is closed to new replies.