how to show label for user meta in user profile ultimate member

47 views Asked by At

i try to show user data in user profile but in profile page not show tab and not show data, It's show only profile photo. i want to click view profile from menu user in admin

enter image description here

after click i want to show profile for that user.

i user ultimate member plugin i go to forms > profile and add filed but it's not show enter image description here

so, i add fields to meta but it's show only data not show label enter image description here

enter image description here

how to show label for user meta or how show filed in form builder?

help me, please!!

1

There are 1 answers

0
Amika Boonthima On

now, i can use this for custom label for meta but i can't pull label name from ultimate member

add_filter('um_show_meta_item_html','um_show_meta_item_html_custom',10, 2);
function um_show_meta_item_html_custom( $html, $args ) {
    $feildName = array(
                            "id_card" => "ID Card"
                            
                      );
    $htmlNew .= '<div class="meta-title-name">';
    $htmlNew .= $feildName[$args];  
    $htmlNew .= '</div>';
    $htmlNew .= '<div class="meta-title-value">'.$html.'</div>';
    return $htmlNew;
}