106 | | <ul id="public-group-description"> |
107 | | <li><?php _e( 'Any site member can join this group.', 'buddypress' ); ?></li> |
108 | | <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ); ?></li> |
109 | | <li><?php _e( 'Group content and activity will be visible to any site member.', 'buddypress' ); ?></li> |
110 | | </ul> |
| 106 | <label for="group-status-public"><input type="radio" name="group-status" id="group-status-public" value="public"<?php if ( 'public' == bp_get_new_group_status() || !bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="public-group-description" /> <?php _e( 'This is a public group', 'buddypress' ); ?></label> |
112 | | <label for="group-status-private"><input type="radio" name="group-status" id="group-status-private" value="private"<?php if ( 'private' == bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="private-group-description" /> <?php _e( 'This is a private group', 'buddypress' ); ?></label> |
| 108 | <ul id="public-group-description"> |
| 109 | <li><?php _e( 'Any site member can join this group.', 'buddypress' ); ?></li> |
| 110 | <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ); ?></li> |
| 111 | <li><?php _e( 'Group content and activity will be visible to any site member.', 'buddypress' ); ?></li> |
| 112 | </ul> |
114 | | <ul id="private-group-description"> |
115 | | <li><?php _e( 'Only users who request membership and are accepted can join the group.', 'buddypress' ); ?></li> |
116 | | <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ); ?></li> |
117 | | <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ); ?></li> |
118 | | </ul> |
| 114 | <label for="group-status-private"><input type="radio" name="group-status" id="group-status-private" value="private"<?php if ( 'private' == bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="private-group-description" /> <?php _e( 'This is a private group', 'buddypress' ); ?></label> |
120 | | <label for="group-status-hidden"><input type="radio" name="group-status" id="group-status-hidden" value="hidden"<?php if ( 'hidden' == bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="hidden-group-description" /> <?php _e('This is a hidden group', 'buddypress' ); ?></label> |
| 116 | <ul id="private-group-description"> |
| 117 | <li><?php _e( 'Only users who request membership and are accepted can join the group.', 'buddypress' ); ?></li> |
| 118 | <li><?php _e( 'This group will be listed in the groups directory and in search results.', 'buddypress' ); ?></li> |
| 119 | <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ); ?></li> |
| 120 | </ul> |
122 | | <ul id="hidden-group-description"> |
123 | | <li><?php _e( 'Only users who are invited can join the group.', 'buddypress' ); ?></li> |
124 | | <li><?php _e( 'This group will not be listed in the groups directory or search results.', 'buddypress' ); ?></li> |
125 | | <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ); ?></li> |
126 | | </ul> |
| 122 | <label for="group-status-hidden"><input type="radio" name="group-status" id="group-status-hidden" value="hidden"<?php if ( 'hidden' == bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="hidden-group-description" /> <?php _e('This is a hidden group', 'buddypress' ); ?></label> |