• Resolved Marcelo Herrera

    (@rafadizeo)


    Hi

    how to get the values of the fields (forms) to show them where i want?

    i tried with get_user() but there is not stored.

    Thanks

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

    (@rafadizeo)

    Solved using get_user_meta()

    and prefix user_registration_

    So for example to get phone of all users registered by role

    $args = array(
            'role'    => 'ROLEHERE',
            'orderby' => 'user_nicename',
            'order'   => 'ASC'
        );
        $users = get_users( $args );
        foreach ( $users as $user ) {
        echo esc_html($postulante->user_registration_phone_1654792225);
        }
    Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @rafadizeo,

    Glad to know the issue has been resolved. If you need any assistance in the future, create a new ticket we will get back to you as soon as possible.

    Regards!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get field value’s’ is closed to new replies.