Quote Originally Posted by tmccaff View Post
Hopefully, I got this right not any more of that non-numeric value error. Thanks for that, what I read was to change this in categories_ul_generator.php

line #53:

PHP Code:
$result sprintf($this->parent_group_start_string, ($submenu==true) ? ' class="level'. ($level+1) . '"' '' ); 
to the following:

PHP Code:
$result sprintf($this->parent_group_start_string, ($submenu==true) ? ' class="level'. ((float)$level+1) . '"' '' ); 
also line 73:

PHP Code:
$result .= $this->buildBranch($category_id$level+1$submenu$category_link '_'); 
to the following:

PHP Code:
$result sprintf($this->parent_group_start_string, ($submenu==true) ? ' class="level'. ((float)$level+1) . '"' '' ); 
Fyi, it appears that there was a misunderstanding. The link provided to resolve this issue was to the post in that thread that resolves the issue as it is to be done in ZC 1.5.6 and makes one modification. The solution makes one modification at the start of the function rather than at each use.