Skip to content

Instantly share code, notes, and snippets.

@8lane
Created December 31, 2013 14:07
Show Gist options
  • Save 8lane/8197262 to your computer and use it in GitHub Desktop.
Save 8lane/8197262 to your computer and use it in GitHub Desktop.
Change WooCommerce Paypal Icon on checkout
<?php
add_filter('woocommerce_paypal_icon', 'custom_woocommerce_paypal_icon');
function custom_woocommerce_paypal_icon( $url ) {
$url = get_bloginfo('template_url')."/images/PayPalLogo.png";
return $url;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment