Warning: Invalid argument supplied for foreach() in /plugins/pricetable/pricetable.phtml on line 12
Warning: Invalid argument supplied for foreach() in /plugins/pricetable/pricetable.phtml on line 12
Fixed myself. Changed line 12 from
foreach($column['features'] as $j => $feature) :
to
foreach ( (array)$column['features'] as $j => $feature) :Your way of fixing this issue is much neater than mine. I'll push the update now. Thanks!
I just migrated over a site from one URL to another. No issues except with your plugin. here is the foreach() error. I tried using the above fix but it will only fix the "warning" and not the "fatal error:"
Warning: Invalid argument supplied for foreach() in /plugins/pricetable/pricetable.php on line 214
Fatal error: Cannot use string offset as an array in /plugins/pricetable/pricetable.php on line 222
You must log in to post.