Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimcoleman/a9ecf4384402d005f16c52e1793df126 to your computer and use it in GitHub Desktop.
Save kimcoleman/a9ecf4384402d005f16c52e1793df126 to your computer and use it in GitHub Desktop.
<?php
function my_pmpro_getresponse_custom_fields( $fields, $user ) {
// Get fields from Register Helper user meta
$phone = get_user_meta($user->ID, 'mytheme_phone', true);
$fullname = get_user_meta($user->ID, 'mytheme_fullname', true);
$fields = array(
'telephone' => $phone,
'full_name' => $fullname,
);
return $fields;
}
add_filter( 'pmpro_getresponse_custom_fields', 'my_pmpro_getresponse_custom_fields', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment