http://themeshaper.com/guide-customizing-thematic-theme-framework/
=======================================
Here’s the code to put inside your child theme’s function.php:
// Remove default Thematic actions
function remove_thematic_actions() {
remove_action(‘thematic_hookname’,’thematic_actionname’,optionalpostitionnumber);
}
add_action(‘init’,’remove_thematic_actions’);