Skip to content

Instantly share code, notes, and snippets.

@LaurenaRehbein
Created January 11, 2018 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LaurenaRehbein/c8d8f134d6903151654bba29a33dfb44 to your computer and use it in GitHub Desktop.
Save LaurenaRehbein/c8d8f134d6903151654bba29a33dfb44 to your computer and use it in GitHub Desktop.
To change the Stripe 4.0 icons back to colour.
add_filter( 'wc_stripe_payment_icons', 'change_my_icons' );
function change_my_icons( $icons ) {
// var_dump( $icons ); to show all possible icons to change.
$icons['visa'] = '<img src="https://mysite.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg" />';
return $icons;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment