Any way to copy a field to a variable_
-
Hello, we are trying (and fauiling) to copy the value of an extra field into a variable…
We use to do this way:
$current_user = wp_get_current_user();
$userprice = $current_user->billing_address_2;But changing to a profile extra field doesnt work:
$current_user = wp_get_current_user();
$userprice = $current_user->prflxtrflds_user_field_value[1];Any other way to get this value in php? (shortcode will not work)
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Any way to copy a field to a variable_’ is closed to new replies.