Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#3157
Vladimir
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 . '\'';
   }
}