PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 3.9.6
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v3.9.6
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
profile-builder / admin / advanced-settings / includes / fields / capitalize-first-last.php

capitalize-first-last.php in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 3.9.6, at admin/advanced-settings/includes/fields/capitalize-first-last.php

19 lines 667 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 $wppb_general_settings = get_option( 'wppb_general_settings' );
4
5 if ( isset( $wppb_general_settings ) && $wppb_general_settings['emailConfirmation'] == 'yes' )
6 add_filter('wppb_add_to_user_signup_form_meta', 'wppb_toolbox_capitalize_first_last', 20, 2);
7 else
8 add_filter('wppb_build_userdata', 'wppb_toolbox_capitalize_first_last', 20, 2);
9
10 function wppb_toolbox_capitalize_first_last( $meta, $global_request ) {
11 if ( isset( $global_request['first_name'] ) )
12 $meta['first_name'] = ucwords( $global_request['first_name'] );
13
14 if ( isset($global_request['last_name']) )
15 $meta['last_name'] = ucwords( $global_request['last_name'] );
16
17 return $meta;
18 }
19