Sorry to say that didn’t work. I put in your code and nothing changes the original featured content is still in place.
here is the code used for http://airstream.michaelsmithcreative.com
// Removing the Default Action Hook
function unhook_catchkathmandu_functions() {
//Add in you hook here
remove_action( ‘catchkathmandu_before_main’, ‘catchkathmandu_homepage_featured_position’, 5 );
}
add_action( ‘init’, ‘unhook_catchkathmandu_functions’ );
function move_featured_content(){
remove_action(‘catchkathmandu_before_main’,’catchkathmandu_homepage_featured_content’, 10);
}
add_action(‘catchkathmandu_special_content’,’move_featured_content’);
add_action(‘catchkathmandu_special_content’,’catchkathmandu_homepage_featured_content’);