Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Having Content-Manager plugin Issues.. › Reply To: Having Content-Manager plugin Issues..
June 17, 2015 at 4:39 pm
#3157
Keymaster
Hey,
Problem is fixed. I modified Content Manager’s content-manager.php file on line 480.
Issue will be fixed in CM’s update.
Code
foreach ($grid['options'] as $key => $val) {
$shortcodes_string .= ' ' . $key . '=\'' . $val . '\'';
}
is replaced with:
if (isset($grid['options']) && !empty($grid['options'])) {
foreach ($grid['options'] as $key => $val) {
$shortcodes_string .= ' ' . $key . '=\'' . $val . '\'';
}
}