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.

#3255
Vladimir
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