This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add new predefined field "Profile Photo" in UM Form Builder. | |
*/ | |
add_filter("um_predefined_fields_hook","um_predefined_fields_hook_profile_photo", 99999, 1 ); | |
function um_predefined_fields_hook_profile_photo( $arr ){ | |
$arr['profile_photo'] = array( | |
'title' => __('Profile Photo','ultimate-member'), | |
'metakey' => 'profile_photo', |