Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Error message using content manager plugin › Reply To: Error message using content manager plugin
July 3, 2015 at 10:34 am
#3255
Keymaster
Sorry, I delayed release because we discovered one more bug.
Your issue was pretty simple to fix so I suggest that you follow my instructions and fix this so you don’t need to wait.
Here is that to do:
– open content-manager.php in (wp-content / plugins / content-manager)
– find line 479-481:
foreach($grid['options'] as $key => $val){
$shortcodes_string .= ' ' . $key . '=\'' . $val . '\'';
}
– replace it with this code:
if (isset($grid['options']) && !empty($grid['options'])) {
foreach ($grid['options'] as $key => $val) {
$shortcodes_string .= ' ' . $key . '=\'' . $val . '\'';
}
}
That’s it. Let me know if you find any other issue.
Vladimir