How to solve “Illegal string offest ‘id'”
If you use WordPress and the WPZoom Bonpress Theme and get this error:
Warning: Illegal string offset ‘id’ in
Here is how you can solve this:
Open index.php and add at the top two lines, see “ADD THIS LINE”:
foreach ($options as $value) { if (isset($value['id'])) { ---> ADD THIS LINE if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); } } --> ADD THIS LINE }
Do the same for header.php, single.php, comments.php, archive.php, footer.php!