- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-core/bp-core-admin.php
r3026 r4066 44 44 <?php if ( function_exists( 'xprofile_install' ) ) :?> 45 45 <tr> 46 <th scope="row">< ?php _e( 'Base profile group name', 'buddypress' ) ?>:</th>46 <th scope="row"><p><?php _e( 'Base profile group name', 'buddypress' ) ?>:</p></th> 47 47 <td> 48 48 <input name="bp-admin[bp-xprofile-base-group-name]" id="bp-xprofile-base-group-name" value="<?php echo get_site_option('bp-xprofile-base-group-name') ?>" /> … … 50 50 </tr> 51 51 <tr> 52 <th scope="row">< ?php _e( 'Full Name field name', 'buddypress' ) ?>:</th>52 <th scope="row"><p><?php _e( 'Full Name field name', 'buddypress' ) ?>:</p></th> 53 53 <td> 54 54 <input name="bp-admin[bp-xprofile-fullname-field-name]" id="bp-xprofile-fullname-field-name" value="<?php echo get_site_option('bp-xprofile-fullname-field-name') ?>" /> … … 56 56 </tr> 57 57 <tr> 58 <th scope="row">< ?php _e( 'Disable BuddyPress to WordPress profile syncing?', 'buddypress' ) ?>:</th>58 <th scope="row"><p><?php _e( 'Disable BuddyPress to WordPress profile syncing?', 'buddypress' ) ?>:</p></th> 59 59 <td> 60 60 <input type="radio" name="bp-admin[bp-disable-profile-sync]"<?php if ( (int)get_site_option( 'bp-disable-profile-sync' ) ) : ?> checked="checked"<?php endif; ?> id="bp-disable-profile-sync" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 64 64 <?php endif; ?> 65 65 <tr> 66 <th scope="row">< ?php _e( 'Hide admin bar for logged out users?', 'buddypress' ) ?>:</th>66 <th scope="row"><p><?php _e( 'Hide admin bar for logged out users?', 'buddypress' ) ?>:</p></th> 67 67 <td> 68 68 <input type="radio" name="bp-admin[hide-loggedout-adminbar]"<?php if ( (int)get_site_option( 'hide-loggedout-adminbar' ) ) : ?> checked="checked"<?php endif; ?> id="bp-admin-hide-loggedout-adminbar-yes" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 71 71 </tr> 72 72 <tr> 73 <th scope="row">< ?php _e( 'Disable avatar uploads? (Gravatars will still work)', 'buddypress' ) ?>:</th>73 <th scope="row"><p><?php _e( 'Disable avatar uploads? (Gravatars will still work)', 'buddypress' ) ?>:</p></th> 74 74 <td> 75 75 <input type="radio" name="bp-admin[bp-disable-avatar-uploads]"<?php if ( (int)get_site_option( 'bp-disable-avatar-uploads' ) ) : ?> checked="checked"<?php endif; ?> id="bp-admin-disable-avatar-uploads-yes" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 78 78 </tr> 79 79 <tr> 80 <th scope="row">< ?php _e( 'Disable user account deletion?', 'buddypress' ) ?>:</th>80 <th scope="row"><p><?php _e( 'Disable user account deletion?', 'buddypress' ) ?>:</p></th> 81 81 <td> 82 82 <input type="radio" name="bp-admin[bp-disable-account-deletion]"<?php if ( (int)get_site_option( 'bp-disable-account-deletion' ) ) : ?> checked="checked"<?php endif; ?> id="bp-disable-account-deletion" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 86 86 <?php if ( function_exists( 'bp_forums_setup') ) : ?> 87 87 <tr> 88 <th scope="row">< ?php _e( 'Disable global forum directory?', 'buddypress' ) ?>:</th>88 <th scope="row"><p><?php _e( 'Disable global forum directory?', 'buddypress' ) ?>:</p></th> 89 89 <td> 90 90 <input type="radio" name="bp-admin[bp-disable-forum-directory]"<?php if ( (int)get_site_option( 'bp-disable-forum-directory' ) ) : ?> checked="checked"<?php endif; ?> id="bp-disable-forum-directory" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 95 95 <?php if ( function_exists( 'bp_activity_install') ) : ?> 96 96 <tr> 97 <th scope="row">< ?php _e( 'Disable activity stream commenting on blog and forum posts?', 'buddypress' ) ?>:</th>97 <th scope="row"><p><?php _e( 'Disable activity stream commenting on blog and forum posts?', 'buddypress' ) ?>:</p></th> 98 98 <td> 99 99 <input type="radio" name="bp-admin[bp-disable-blogforum-comments]"<?php if ( (int)get_site_option( 'bp-disable-blogforum-comments' ) || false === get_site_option( 'bp-disable-blogforum-comments' ) ) : ?> checked="checked"<?php endif; ?> id="bp-disable-blogforum-comments" value="1" /> <?php _e( 'Yes', 'buddypress' ) ?> … … 104 104 105 105 <tr> 106 <th scope="row">< ?php _e( 'Default User Avatar', 'buddypress' ) ?></th>106 <th scope="row"><p><?php _e( 'Default User Avatar', 'buddypress' ) ?></p></th> 107 107 <td> 108 108 <p><?php _e( 'For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address', 'buddypress' ) ?></p>
Note: See TracChangeset
for help on using the changeset viewer.