Meta Box
Support Forum
Support › General › I can't display the value of Fieldset Text.
Error :
Warning: Illegal string offset 'name' in
Problem solved.
This doesn't work:
foreach ( $values as $clone ) { foreach ( $clone as $value ) { echo $clone['name']; } }
I'm doing just this way:
foreach ( $values as $clone ) { echo $clone['name']; }