Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 8lane/ca32ae6ee006f2a35842 to your computer and use it in GitHub Desktop.
Save 8lane/ca32ae6ee006f2a35842 to your computer and use it in GitHub Desktop.
Woocommerce - change stripe icon
// Change the WooThemes stripe plugin icon
add_filter('wc_stripe_icon', 'custom_woocommerce_paypal_icon');
function custom_woocommerce_paypal_icon( $url ) {
$url = get_bloginfo('template_url')."/assets/img/payment-icons.png";
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment