@baljitdhanjal Great, how do you stack them?
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
}
Where in the booster plugin can you edit the Place Order text?