pass the product name to form field cf7 woocommerce code example
Example: pass the product name to form field cf7 woocommerce
<button type="submit" value="<?php echo esc_attr( $product->get_id() ); ?>"
class="single_add_to_cart_button button alt"><?php echo _e( 'Request', 'framework' ); ?></button>
<input type="hidden" name="product-id" value="<?php echo absint( $product->get_id() ); ?>" />
<input type="hidden" name="contact-subject" value="<?php echo esc_html( $product->get_title() ) ?>" />