In your newpage.php find this code
PHP Code:
$tree = cat_tree("", 0);
$class_tpl->assign('getcats', $tree);
Replace with this
PHP Code:
$sSQL="SELECT id,name,cOrder FROM ".PREFIX."categories WHERE parent_id<>0 AND display <>'N' ";
$result = $db->query($sSQL);
$tree=array();
while ($rs = $result->fetch())
{
array_push ($tree,$rs);
}
$class_tpl->assign('getcats', $tree);
Hope that works
