How do I display a full post, not just an excerpt?

Here’s my suggestion… while I would usually give you a suggestion using the_content, I don’t know how this code works into the rest of the theme. So a quick, simple, and dirty fix would be to change the length to a crazily high number. If you don’t like that answer, I’m sure somebody will respond shortly with an answer using the_content. Until then, try this:

// Sets the post excerpt length to 40 words (or 20 words if post carousel)
function ss_framework_excerpt_length( $length ) {

    if( isset( $GLOBALS['post-carousel'] ) )
        return 12000;

    return 12000;

}
add_filter('excerpt_length', 'ss_framework_excerpt_length');