Custom post.php

To remove Preview Button

function posttype_admin_css() {
    global $post_type;
    $post_types = array(
                        /* set post types */
                        'post_type_name'
                  );
    if(in_array($post_type, $post_types))
    echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
}
add_action( 'admin_head-post-new.php', 'posttype_admin_css' );
add_action( 'admin_head-post.php', 'posttype_admin_css' );

To remove slug

function vipx_remove_cpt_slug( $post_link, $post, $leavename ) {

    if ( 'post_type_name' != $post->post_type || 'publish' != $post->post_status ) {
        return $post_link;
    }

    $post_link = str_replace( "https://wordpress.stackexchange.com/" . $post->post_type . "https://wordpress.stackexchange.com/", "https://wordpress.stackexchange.com/", $post_link );

    return $post_link;
}
add_filter( 'post_type_link', 'vipx_remove_cpt_slug', 10, 3 );

Source:
http://vip.wordpress.com/documentation/remove-the-slug-from-your-custom-post-type-permalinks/
http://wpsnipp.com/index.php/functions-php/hide-post-view-and-post-preview-admin-buttons/


If I understood your question correctly, here is your answer.

single-typename.php
archive-typename.php

For example, you’ve a custom post type defined as book. single-book.php should be you’re looking for.