#1445
[email protected]
Participant

Sorry to be a pest! I was able to determine that something in this part of the code below in form.php is causing an issue. When deleting that portion, we were able to get the category section on the page, but not displaying the categories we’ve entered. Still not sure exactly how to fix it! Perhaps you can see?

if($cats){
foreach($cats as $cat){
if(!empty($exclude) && in_array($cat->term_id, array_values($exclude))){

}elseif(!empty($required) && in_array($cat->term_id, array_values($required))){
$required_list .= ”.$cat->name.’term_id.'” checked=”checked” disabled=”disabled”>’;
}else{
$normal_list .= ”.$cat->name.’term_id.'” checked=”checked”>’;
}
}