I have tried for hours now, and I cannot get this "basic" thing working whatsoever.
I have a bunch of payment gateways available and I need the name of it, including the total order value, to be included in the "Pay Now" button text.
Example: "Order & Pay $49 using Stripe
"
I have code that supposedly should auto-update the checkout on gateway change. Please, someone?
add_filter( 'woocommerce_order_button_text', 'order_button_text_based_on_gateway', 10, 1 );
function order_button_text_based_on_gateway( $cart ) {
// make sure we get the payment gateways
$payment_method = WC()->session->get( 'chosen_payment_method' );
// based on different gateways, display a different button text (place order button)
if ( $payment_method == ' bacs ' ) {
return sprintf( '%s %s', __('Order & Pay', 'woocommerce'),
strip_tags( WC()->cart->get_total() ) . ' using WireTransfer' );
}
elseif ( $payment_method == ' cheque ' ) {
return sprintf( '%s %s', __('Order & Pay', 'woocommerce'),
strip_tags( WC()->cart->get_total() ) . ' with a personal cheque' );
}
elseif ( $payment_method == ' cod ' ) {
return sprintf( '%s %s', __('Order & Pay', 'woocommerce'),
strip_tags( WC()->cart->get_total() ) . ' on delivery' );
}
elseif ( $payment_method == ' etco ' ) {
return sprintf( '%s %s', __('Order & Pay', 'woocommerce'),
strip_tags( WC()->cart->get_total() ) . ' using EtCo' );
}
else ( $payment_method == ' stripe ' ) {
return sprintf( '%s %s', __('Order & Pay', 'woocommerce'),
strip_tags( WC()->cart->get_total() ) . ' using Stripe' );
}
}
The "auto update" checkout script:
add_action( 'wp_footer', 'reload_checkout_based_on_gateway_change', 999 );
function reload_checkout_based_on_gateway_change() {
if ( is_checkout() && ! is_admin() ) {
// close PHP, get the SCRIPT going
?>
<script>
( function( $ ) {
$( 'form.checkout' ).on( 'change', 'input[name^="payment_method"]', function() {
$( 'body' ).trigger( 'update_checkout' );
}
);
}
)
( jQuery );
</script>
<?php
}
}
2
Answers
There are a lot of mistakes in your code:
' cheque '
and'cheque'
are two different strings.So in all your if statements, no payment method was matching.
else
doesn’t support any conditional arguments.There is multiple ways to Change checkout "Place order" Button Text:
Or also using the
WC_Payment_Gateway
order_button_text
property like:Code goes in functions.php file of your child theme (or in a plugin). Tested and works.
Dont work!
I put it into my child theme, nothing changed or happened