Hi,
I have successfully understood your goal. Unfortunately, the enquire form is not currently available in our plugin.
Are you using any plugin to achieve this: https://prnt.sc/R5GA_UxqaNue?
If so, do they provide any shortcodes? If they have a shortcode of the popup form, you can replace the add-to-cart button with that shortcode.
Here is a sample snippet, you can try it on your site. Then customize it as per your need:
add_filter( 'pvtfw_row_cart_btn_is', function( $default, $product_id, $cart_url, $product_url, $variant_id, $text ){
return "Do what you want here!";
}, 10, 6);
Shortcode example:
add_filter( 'pvtfw_row_cart_btn_is', function( $default, $product_id, $cart_url, $product_url, $variant_id, $text ){
return do_shortcode('[A_SHORTCODE]');
}, 10, 6);
I hope this will help.
Best Regards