Created
December 2, 2011 23:12
-
-
Save mikejolley/1425282 to your computer and use it in GitHub Desktop.
This snippet lets you edit the icon for the PayPal gateway in WooCommerce.
This file contains 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
add_filter('woocommerce_paypal_icon', 'custom_woocommerce_paypal_icon') | |
function custom_woocommerce_paypal_icon( $url ) { | |
$url = 'http://yoursite,com/youriconurl.png'; | |
return $url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
syntax error on line 1, should read:
add_filter('woocommerce_paypal_icon', 'custom_woocommerce_paypal_icon');