Try this:
find file “plugins\woo-rfq-for-woocommerce\includes\classes\cart\gpls_woo_rfq_cart.php” and replace lines “118” through “154” with code below. Let me know if this works.
<script type="application/javascript">
jQuery(".gpls_rfq_set").click(function (e) {
jQuery(window).ajaxComplete(function () {
var image_div;
<?php if ($normal_check == true && get_option('settings_gpls_woo_rfq_normal_checkout_show_prices', 'no') != 'yes'): ?>
jQuery(".gpls_rfq_set_div").find('.added_to_cart').hide();
jQuery(".gpls_rfq_set_div").find('.added_to_cart').attr('style','display: none !important');
<?php endif; ?>
var rfqcart_link = ".rfqcart-link";
jQuery(rfqcart_link).show();
jQuery("rfqcart_link").attr('style','display: block');
jQuery.ajax({
async: true,
type: 'GET',
url: '/?rfq_widget=0',
error: function (xhr, status, error) {
console.log(error.Message);
},
success: function (msg_back) {
// console.log(theContent);
jQuery('.gpls_woo_rfq_request_mini_page').html(msg_back);
}
});
});
});
</script>