You can show the Contact Form 7 form in your live site, but can make the Submit button remain disable so that no one can submit it . Here I am sharing you a piece of jQuery code using which you can make the Contact Form Submit button block or inactive.
Here is the jQuery code
<script>
jQuery(document).ready(function() {
jQuery('.wpcf7-form-control.wpcf7-submit').on('click',function(e){
e.preventDefault();
});
});
</script>