You cannot change this with a setting. It is hardcoded, but if you would like to change it you have to change the file woocommerce-quote-or-enquiry-contact-form-7.php. The you will see the title.
function wqoecf_quote_enquiry_script()
{
$options= wqoecf_quote_enquiry_options();
if(isset($options[‘contact_form7’])){
$contactform = $options[‘contact_form7’];
}
?>
<div class=”wqoecf-pop-up-box” style=”display: none;”>
<!– /assets/images/close.png” onclick=”wqoecf_hide()”> –>
<button class=”wqoecf_close” onclick=”wqoecf_hide()”><span></span><span></span></button>
<div>
<p class=”wqoecf_form_title”>Product Enquiry</p>
<?php echo do_shortcode(‘[contact-form-7 id=”‘.$contactform.'”]’); ?>
</div>
</div>
<script>`