Created
December 28, 2015 04:42
-
-
Save BurlesonBrad/2757b03df54704cfb5bc to your computer and use it in GitHub Desktop.
For Darryn
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
/* Use a custom image for PayPal on WooCommerce checkout page. */ | |
/* Be sure to change line 6 to point to your new image */ | |
function my_new_paypal_icon() { | |
// picture of accepted credit card icons for PayPal payments | |
return get_stylesheet_directory_uri() . 'somefolder/images/your-new-image.jpg'; | |
} | |
add_filter( 'woocommerce_paypal_icon', 'my_new_paypal_icon' ); |
Author
BurlesonBrad
commented
Jan 5, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment