How to add field City for account page
-
I need to add Custom Field – “City” for account page.
I find that Country we can and like this –
function um_account_custom_fields($args, $shortcode_args) { $args .= ',country'; $args .= ',city'; return $args; } add_filter('um_account_tab_general_fields', 'um_account_custom_fields', 10, 2);
But it doesn’t work for custom field… How to fix it?
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘How to add field City for account page’ is closed to new replies.