I am having this problem as well, I like this plugin a lot but I can’t keep using it if my users can’t edit posts pages properly. Is there a fix in sight?
Looking in the wp_usermeta table as well only two members have a value and they are ones I set manually yesterday.
I wrote the following function and call and placed them in the active themes functions.php file:
set_legacy_members(1);
function set_legacy_members($members_value) {
$members = get_users();
$is_member = 'field_522f3c55f16be';
foreach ($members as $member) {
$user = "user_" . $member->ID;
update_field($is_member, $members_value, $user);
}
}
However this hasn’t worked, the field is still set to false for every member, what am I doing wrong?