Hi
i got prob to query users with custom field repeater
What i made :
i got a custom search form, who search in ajax with get_users and with complexe request on many user’s customs fields
all work fine, even filter taxonomy assigned to user like custom field
but it dont work for my repeater field..
the repeater key is : liste_des_langues & the item key : langue
if add this :
function wpza_replace_repeater_field( $where ) {
$where = str_replace( "meta_key = 'liste_des_langues_$", "meta_key LIKE 'liste_des_langues_%", $where );
return $where;
}
add_filter( 'posts_where', 'wpza_replace_repeater_field' );
and this is my request args for this field :
if($langues && $langues != 'all'){
$temp = array(
'key' => 'liste_des_langues_$_langue',
'value' => $langues,
'compare' => 'LIKE',
);
array_push($request['meta_query'] , $temp);
}
this is the basic request :
$request = array(
'role__in' => array( 'consultant' ),
'meta_query' => array(),
'tax_query' => array(),
);
if(count($_GET) > 1){
$request['meta_query']['relation'] = 'AND';
}
but it doesn’t work :/
and i dont understand where is my mistake, someone can help please ?
the hook you are using “posts_where” is for altering the WHERE clause of a post query. This will not work for a user query. WP has no hooks to alter the user query in this manner.
I take that back, you can alter these using the pre_user_query hook.
https://developer.wordpress.org/reference/hooks/pre_user_query/
You will need to adapt the code for this.
Thanks John, but i really don’t understand what i have to do. I’m not familiar with SQL query
All my others custom field users work perfectly, this is just with the repeater the problem, did i have to change all the query ?
i really don’t understand the pre_user_query and the impact on my all code :/
can you explain little bit more please ?
You must be logged in to reply to this topic.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.