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
FYI - I have the same issue as mentioned here, and did a little digging and it appears the data is double nested in an array when it happens to me. And since you are running the extracting ternary once, it doesn't catch it. I just copy and pasted that ternary (on /wp-user-frontend/includes/fields/class-field-checkbox.php line 183), and it seems to work great now.
Warning: explode() expects parameter 2 to be string, array given in .../public/wp-content/plugins/wp-user-frontend/includes/fields/class-field-checkbox.php on line 185
Warning: Invalid argument supplied for foreach() in .../public/wp-content/plugins/wp-user-frontend/includes/fields/class-field-checkbox.php on line 188
The text was updated successfully, but these errors were encountered:
FYI - I have the same issue as mentioned here, and did a little digging and it appears the data is double nested in an array when it happens to me. And since you are running the extracting ternary once, it doesn't catch it. I just copy and pasted that ternary (on /wp-user-frontend/includes/fields/class-field-checkbox.php line 183), and it seems to work great now.
Turned this...
into this...
Ref errors:
The text was updated successfully, but these errors were encountered: