Ok, for the life of me I can't figure out how to work the whole filter/action thing to be able to get rid of the date/time and author showing under the post title.
I've tried out something like...
function remove_post_author() {
remove_filter('thematic_indexloop', 'thematic_time_display');
}
add_action('init', 'remove_post_author');
But that isn't working and I've tried multiple other variations with remove_action and what not. What am I doing wrong?