• Resolved virtualgeorge

    (@virtualgeorge)


    I want to create pages for each state that show my registered users from that state only, not just sorted by the state field. I would have a custom field added to the profile for “State”, is this possible?

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ProfileGrid Support

    (@profilegrid0)

    Hello,

    Thank you for writing to us.

    This feature is not available.

    In case you have any questions, please raise a ticket on https://profilegrid.co/contact-us-2
    We try to respond to all inquiries at earliest.

    Hi,

    Not sure if this will help you, but this is what I use for something that looks like you are looking for. I create templates with the following code:

    $args = array(
    ‘order’ => ‘ASC’
    );

    // The Query
    $user_query = new WP_User_Query( $args );

    // User Loop
    if ( ! empty( $user_query->get_results() ) ) {
    foreach ( $user_query->get_results() as $user ) {
    if ( $user->pm_field_20 == “xxxxxx”) {
    echo ‘<p>’ . $user->display_name . ‘</p>’;
    }
    }
    } else {
    echo ‘No users found.’;
    }

    If you want to know fast which pm_field_xx you want, you can use this:

    $all_meta_for_user = get_user_meta( 2 );
    print_r( $all_meta_for_user );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Create lists of users based on custom field?’ is closed to new replies.