Here’s the proper hook to change the text on the button that says “Place Order.”replace “Pay for order” with whatever you want the button to say.
add_filter( ‘woocommerce_order_button_text’, ‘misha_custom_button_text’ );
function misha_custom_button_text( $button_text ) {
return ‘Pay For Order’; // new text is here
}