• I would like to change the text of the button in the shopping cart from “Review cart and make payment” to “Confirm reservation”. We are not using a payment gateway at all (offline payments only), so confused patrons are not completing their “purchases”. How can I do this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    There’s a filter mt_submit_button_text that you can use to change that button’s text.

    
    function change_payment_text( $text, $gateway ) {
        return 'Confirm reservation';
    }
    add_filter( 'mt_submit_button_text', 'change_payment_text', 10, 2 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Change payment button text’ is closed to new replies.