As of now there is no inbuilt provision for this.
But you can try this :
a. Generate the
contact form shortcode using Vibe shortcode generate in any WP Editor.
b. copy course-review.php file from parent theme in your child theme.
c. replace the code :
if ( isset($_POST['review']) && wp_verify_nonce($_POST['review'],get_the_ID()) ):
comment_form(array('fields'=>$fields,'comment_field'=>$comment_field,'label_submit' => __('Post Review','vibe'),'title_reply'=> '<span>'.__('Write a Review','vibe').'</span>','logged_in_as'=>'','comment_notes_after'=>'' ));
echo '<div id="comment-status" data-quesid="'.$post->ID.'"></div><script>jQuery(document).ready(function($){$("#submit").hide();$("#comment").on("keyup",function(){if($("#comment").val().length){$("#submit").show(100);}else{$("#submit").hide(100);}});});</script>';
endif;
with
if ( isset($_POST['review']) && wp_verify_nonce($_POST['review'],get_the_ID()) ):
echo do_shortcode('[form...[/form]'); // your form shortcode
endif;