Plugin Author
Gabor
(@nextendweb_gabor)
Hi! That message can appear, when the error reporting is higher in your server, but it’s not really an error, just a warning. Please open up that file, and look for that line 62. codepart:
for ($i = 0; $i < count($items); $i++) {
$items[$i]->id = $items[$i]->ID;
$items[$i]->parent = $items[$i]->menu_item_parent;
$allItems[$items[$i]->id] = $items[$i];
}
then put one more line in it:
for ($i = 0; $i < count($items); $i++) {
if (!isset($items[$i])) $items[$i] = new stdClass();
$items[$i]->id = $items[$i]->ID;
$items[$i]->parent = $items[$i]->menu_item_parent;
$allItems[$items[$i]->id] = $items[$i];
}
this should fix your problem!