Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active October 7, 2022 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webtoffee-git/7ad32212b7b8aaa4e7d938cc6c157586 to your computer and use it in GitHub Desktop.
Save webtoffee-git/7ad32212b7b8aaa4e7d938cc6c157586 to your computer and use it in GitHub Desktop.
Remove PayPal icons from checkout page- Webtoffee PayPal Express Checkout Payment Gateway for WooCommerce (https://wordpress.org/plugins/express-checkout-paypal-payment-gateway-for-woocommerce/)
<?php // do not copy this line
add_filter('eh_paypal_checkout_icon_url','eh_paypal_checkout_icon_url_change');
function eh_paypal_checkout_icon_url_change($icon_url){
return $icon_url = '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment