Here, we will discuss
How to Change place order button text woocommerce?
Open functions.php file and add the below code.
//change place order text woocommerce add_filter( 'woocommerce_order_button_text', 'woo_custom_order_button_text' ); function woo_custom_order_button_text() { return __( 'Submit Inquiry', 'woocommerce' ); }