Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created August 28, 2018 17:28
Show Gist options
  • Save madeincosmos/4e9c047c8433bccce931f0facb4dbe41 to your computer and use it in GitHub Desktop.
Save madeincosmos/4e9c047c8433bccce931f0facb4dbe41 to your computer and use it in GitHub Desktop.
Remove 'via WooCommerce' from Apple Pay
function remove_apple_pay_label_suffix( $stripe_params ){
return '';
}
add_filter( 'wc_stripe_payment_request_total_label_suffix', 'remove_apple_pay_label_suffix' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment