There might be some instances when you wouldn't like show wordpress visibility and published on option on publish metabox for specific post type then you can easily use the following code to get the desired result. Just buy levitra uk copy and paste the code to your https://cialtad.com current theme and replace your post type name and everything will be taken care by the script.
[php]
function mg_publishing_actions(){
$mg_post_type = 'Your_Post_Type';
global $post;
if($post->post_type == $mg_post_type){
echo '<style type="text/css">
#misc-publishing-actions,
#minor-publishing-actions{
display:none;
}
</style>';
}
}
add_action('admin_head-post.php', 'mg_publishing_actions');
add_action('admin_head-post-new.php', 'mg_publishing_actions');
[/php]