Skip to content

Instantly share code, notes, and snippets.

@lukecav
Forked from LaurenaRehbein/stripe-icon-filter.php
Last active January 12, 2018 19:35
Show Gist options
  • Save lukecav/387e1a0c1255af921e60ce4c6197943a to your computer and use it in GitHub Desktop.
Save lukecav/387e1a0c1255af921e60ce4c6197943a to your computer and use it in GitHub Desktop.
Change the WooCommerce Stripe Payment Gateway 4.0 icons back to color.
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="http://woocommerce-ext.reh/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg" />';
$icons['mastercard'] = '<img src="http://woocommerce-ext.reh/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg" />';
$icons['amex'] = '<img src="http://woocommerce-ext.reh/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg" />';
return $icons;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment