• Resolved fuhrmann6020

    (@fuhrmann6020)


    hi all,
    how to sort the member directory depending on the profile image. the users without a profile image should be the last in the sorting.

    I tried some code see below, but I was not successful.

    function hide_users_without_photo_($query) {
    // Check if it’s the Ultimate Member query
    if (isset($query->query_vars[‘um_user_query’]) && $query->query_vars[‘um_user_query’]) {
    // Modify the query to exclude users without a profile photo
    $query->query_where .= ” AND ID IN (SELECT user_id FROM wp_usermeta WHERE meta_key = ‘profile_photo’ AND meta_value != ”)”;
    }
    }

    add_action(‘pre_user_query’, ‘hide_users_without_photo_’);

    https://www.itf-guides.at/mitglieder/?filter_languages_77509=Englisch

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

    (@fuhrmann6020)

    hi all,
    how to sort the member directory depending on the profile image. the users without a profile image should be the last in the sorting.

    I tried some code see below, but I was not successful.

    function hide_users_without_photo_($query) {
    // Check if it’s the Ultimate Member query
    if (isset($query->query_vars[‘um_user_query’]) && $query->query_vars[‘um_user_query’]) {
    // Modify the query to exclude users without a profile photo
    $query->query_where .= ” AND ID IN (SELECT user_id FROM wp_usermeta WHERE meta_key = ‘profile_photo’ AND meta_value != ”)”;
    }
    }

    add_action(‘pre_user_query’, ‘hide_users_without_photo_’);

    https://www.itf-guides.at/mitglieder/?filter_languages_77509=Englisch

    Thread Starter fuhrmann6020

    (@fuhrmann6020)

    closed

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘member directory: sort users without profile images’ is closed to new replies.