Skip to content

Instantly share code, notes, and snippets.

@simonlk
Forked from mikejolley/gist:1425282
Created November 28, 2012 00:41
Show Gist options
  • Save simonlk/4158225 to your computer and use it in GitHub Desktop.
Save simonlk/4158225 to your computer and use it in GitHub Desktop.
This snippet lets you edit the icon for the PayPal gateway in WooCommerce.
// Change the paypal icon
add_filter('woocommerce_paypal_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