Skip to content

Instantly share code, notes, and snippets.

@geeklore
Created August 31, 2018 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geeklore/d5f745ce30ca2ecd287e34b95a95d2a5 to your computer and use it in GitHub Desktop.
Save geeklore/d5f745ce30ca2ecd287e34b95a95d2a5 to your computer and use it in GitHub Desktop.
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