You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to fetch a repeater acf field of a user and I get the following error:
Illuminate\Database\QueryException : SQLSTATE[42S22]: Column not found: 1054 Unknown column 'post_id' in 'where clause' (SQL: select * from wp_usermeta where post_id = 1 and (meta_key like arepeater_0_% or meta_key like arepeater_-1_%))
The problem is that there should be user_id in the where statement instead of post_id.
I already created a quick fix locally. I hope I'll find time to create a PR for this in the next couple of weeks.
The text was updated successfully, but these errors were encountered:
I am trying to fetch a repeater acf field of a user and I get the following error:
Illuminate\Database\QueryException : SQLSTATE[42S22]: Column not found: 1054 Unknown column 'post_id' in 'where clause' (SQL: select * from wp_usermeta where post_id = 1 and (meta_key like arepeater_0_% or meta_key like arepeater_-1_%))
The problem is that there should be
user_id
in the where statement instead ofpost_id
.I already created a quick fix locally. I hope I'll find time to create a PR for this in the next couple of weeks.
The text was updated successfully, but these errors were encountered: