How to add field Biography for account page
-
I need to add biography field textarea into Account page. That user can change this information on this page. How to do it ?
I tryed like this
function um_account_custom_fields($args, $shortcode_args) { $args_array = explode(',', $args); array_unshift($args_array, ',biography'); $args_array[] = ',country'; $args = implode(',', $args_array); return $args; } add_filter('um_account_tab_general_fields', 'um_account_custom_fields', 10, 2);
but it dosen’t work
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to add field Biography for account page’ is closed to new replies.