Changeset 11617
- Timestamp:
- 06/23/2017 09:05:04 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/register.php
r11246 r11617 223 223 do_action( 'bp_custom_profile_edit_fields' ); ?> 224 224 225 <p class="description"><?php bp_the_profile_field_description(); ?></p>226 227 225 </div> 228 226 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
r11591 r11617 92 92 do_action( 'bp_custom_profile_edit_fields' ); ?> 93 93 94 <p class="description"><?php bp_the_profile_field_description(); ?></p>95 94 </div> 96 95 -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php
r11400 r11617 73 73 <?php bp_the_profile_field_required_label(); ?> 74 74 </legend> 75 76 <?php if ( bp_get_the_profile_field_description() ) : ?> 77 <p class="description" tabindex="0"><?php bp_the_profile_field_description(); ?></p> 78 <?php endif; ?> 75 79 76 80 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
r11253 r11617 87 87 <?php bp_the_profile_field_required_label(); ?> 88 88 </legend> 89 90 <?php if ( bp_get_the_profile_field_description() ) : ?> 91 <p class="description" tabindex="0"><?php bp_the_profile_field_description(); ?></p> 92 <?php endif; ?> 89 93 90 94 <div class="input-options datebox-selects"> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php
r10828 r11617 84 84 do_action( bp_get_the_profile_field_errors_action() ); ?> 85 85 86 <select <?php echo $this->get_edit_field_html_elements( $r ); ?> >86 <select <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 87 87 <?php bp_the_profile_field_options( array( 88 88 'user_id' => $user_id 89 89 ) ); ?> 90 90 </select> 91 92 <?php if ( bp_get_the_profile_field_description() ) : ?> 93 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 94 <?php endif; ?> 91 95 92 96 <?php if ( ! bp_get_the_profile_field_is_required() ) : ?> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-number.php
r10828 r11617 76 76 do_action( bp_get_the_profile_field_errors_action() ); ?> 77 77 78 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>> 78 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 79 80 <?php if ( bp_get_the_profile_field_description() ) : ?> 81 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 82 <?php endif; ?> 79 83 80 84 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
r11400 r11617 72 72 <?php bp_the_profile_field_required_label(); ?> 73 73 </legend> 74 75 <?php if ( bp_get_the_profile_field_description() ) : ?> 76 <p class="description" tabindex="0"><?php bp_the_profile_field_description(); ?></p> 77 <?php endif; ?> 74 78 75 79 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php
r10828 r11617 76 76 do_action( bp_get_the_profile_field_errors_action() ); ?> 77 77 78 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> >78 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 79 79 <?php bp_the_profile_field_options( array( 'user_id' => $user_id ) ); ?> 80 80 </select> 81 82 <?php if ( bp_get_the_profile_field_description() ) : ?> 83 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 84 <?php endif; ?> 81 85 82 86 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php
r10417 r11617 82 82 ?> 83 83 84 <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> ><?php bp_the_profile_field_edit_value(); ?></textarea>84 <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_edit_value(); ?></textarea> 85 85 86 86 <?php … … 118 118 ); 119 119 } 120 121 if ( bp_get_the_profile_field_description() ) : ?> 122 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 123 <?php endif; 120 124 } 121 125 -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php
r10828 r11617 75 75 do_action( bp_get_the_profile_field_errors_action() ); ?> 76 76 77 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>> 77 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 78 79 <?php if ( bp_get_the_profile_field_description() ) : ?> 80 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 81 <?php endif; ?> 78 82 79 83 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-url.php
r11033 r11617 77 77 do_action( bp_get_the_profile_field_errors_action() ); ?> 78 78 79 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>> 79 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 80 81 <?php if ( bp_get_the_profile_field_description() ) : ?> 82 <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p> 83 <?php endif; ?> 80 84 81 85 <?php
Note: See TracChangeset
for help on using the changeset viewer.