Remove "Preview" button from Custom Post type edit page
// Hide "Preview" button
function hide_preview_button()
{
global $current_screen;
if ( 'CUSTOM_POST_TYPE' == $current_screen->post_type ) {
echo '<style>#preview-action,.updated a{display:none;}</style>';
}
}
add_action('admin_head', 'hide_preview_button');