• for example i want to set the address ,birth date and phone number in account page and show it in profile as well . is there any filter hook?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nadiaam67

    (@nadiaam67)

    i found this filter hook => add_filter( ‘um_account_tab_general_fields’, ‘my_account_tab_general_fields’, 12, 2 );
    function my_account_tab_general_fields( $args, $shortcode_args ) {
    $args .= ‘,address’;
    $args .= ‘,birth_date’;
    $args .= ‘,code’;
    return $args;
    }
    but it just add um default field for example in my example it just add birth date amongs three field.
    is there any way to add fields to my account->general tab and profile page?

    • This reply was modified 4 years, 7 months ago by nadiaam67.

    You can do this using the default UM forms. You can rearrange them to show fields from default WordPress or new fields you’ve created yourself. You’ll find this capability under WP-admin>Ultimate Member>Forms, and there’s plenty of help pages on their website about this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is there any Way to add extra field to profile page?’ is closed to new replies.