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
}
}