Forked from simonlk/Woocommerce - change paypal icon
Last active
August 29, 2015 14:03
-
-
Save 8lane/ca32ae6ee006f2a35842 to your computer and use it in GitHub Desktop.
Woocommerce - change stripe icon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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