Skip to content

Instantly share code, notes, and snippets.

@grantalltodavid
Created October 13, 2021 09:56
Show Gist options
  • Save grantalltodavid/c8bed39760a61970a05481990c84dd06 to your computer and use it in GitHub Desktop.
Save grantalltodavid/c8bed39760a61970a05481990c84dd06 to your computer and use it in GitHub Desktop.
Sliced Invoices Authorize.net Gateway: change "pay with Authorize.net" button text
add_filter( 'sliced_get_gateway_authorize_net_label', 'sliced_customize_authorize_net_gateway_label' );
function sliced_customize_authorize_net_gateway_label( $label ) {
return 'Pay by Credit Card';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment