Skip to content

Instantly share code, notes, and snippets.

@8lane
8lane / Woocommerce - change paypal icon
Last active August 29, 2015 14:03 — forked from simonlk/Woocommerce - change paypal icon
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;
}