• Resolved der_velli

    (@der_velli)


    Hi.
    Great tool, but is it possible to search in couple of profile fields like name, surname, city, job (and other custom made profile fields) by only one searchfield?

    best regards
    velli

Viewing 1 replies (of 1 total)
  • Plugin Author Andrea Tarantini

    (@dontdream)

    Hi Velli,

    If you have field 5 in your search form, and with the field 5 search box you want to search field 5, 12 and 35 at the same time, you can use this code:

    add_filter ('bps_field_sql', 'change_query', 10, 2);
    function change_query ($sql, $f)
    {
            if ($f->id == 5)  $sql['where']['field_id'] = 'field_id IN (5,12,35)';
            return $sql;
    }

    Replace 5, 12 and 35 with your actual field IDs.
    By the way, this works only with BuddyPress profile fields, not with other search fields.

Viewing 1 replies (of 1 total)
  • The topic ‘Search in more than just one profile field?’ is closed to new replies.