Gene,
per your request- here is a new thread. we were sort of bogging down the bug report thread.
i think it would be great if you were on a "portfolio" type post, that you'd get atleast "portfolio" in the body class. maybe also "custom-post-type".
i am able to get that with the following:
function post_type_body_class($c) {
global $wp_query;
$post_type = get_query_var('post_type');
if( get_post_type() == $post_type ){
$c[] = $post_type;
} else {
null;
}
return $c;
}
add_filter('thematic_body_class','post_type_body_class');
where i run into a bit more trouble, is as ridgely mentioned in the other thread- getting "portfolio-archive" or something similar. although now that i look again there seems to be "taxonomy","tax-portfolio-tags","portfolio-tags-theme" and "modification", which is the sub-taxonomy. should be enough for me right now.
Ridgely, want to chime in?