The custom function that auto-writes meta names and keywords interferes with non-geodirectory category and tags.
When it takes the category description or tag and writes it to meta name description it can write it to the body and not the head area.
I’ve commented out
line 486 – 495
/* elseif(is_category() || is_tag()){
if(is_category()){
echo __("Posts related to Category:", GEODIRECTORY_TEXTDOMAIN)." ".ucfirst(single_cat_title("", FALSE));
}elseif(is_tag()){
echo __("Posts related to Tag:", GEODIRECTORY_TEXTDOMAIN)." ".ucfirst(single_tag_title("", FALSE));
}
}
elseif(isset($current_term->taxonomy)){
echo isset($current_term->description) ? $current_term->description : '';
}*/
in custom_functions.php to deal with this. It would be much better if the function was written to only work with geodirectory post types and not all post types.
Kevin