Hello,
There is no option available for this in the theme settings to change this behaviour. This requires customization, which is beyond our support policy.
I have searched for a possible solution and found a custom function that you can add to your functions.php file. I have tested this code on our test site, and it is working fine.
If the provided code does not work as expected, unfortunately, we are unable to modify it further.
Add this to your theme’s functions.php file of the theme.
function replace_add_to_cart_with_product_link($url, $product) {
return get_permalink($product->get_id());
}
add_filter('woocommerce_product_add_to_cart_url', 'replace_add_to_cart_with_product_link', 10, 2);
Hope this Helps!
Best Regards,