Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Created December 28, 2015 04:42
Show Gist options
  • Save BurlesonBrad/2757b03df54704cfb5bc to your computer and use it in GitHub Desktop.
Save BurlesonBrad/2757b03df54704cfb5bc to your computer and use it in GitHub Desktop.
For Darryn
/* 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' );
@BurlesonBrad
Copy link
Author

function my_new_paypal_icon() {
 // picture of accepted credit card icons for PayPal payments
 return get_template_directory_uri() . 'http://www.aroundtown.ie/paypal.jpg';
}
add_filter( 'woocommerce_paypal_icon', 'my_new_paypal_icon' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment