# This is post #6 of 31 in the challenge “Mastering WooCommerce”
If you have noticed WooCommerce used large Paypal icon at the Payment section in checkout page since previous updates, then maybe you would like to change that image or remove that.
Refer the screenshot below:

So if you would like to change this icon or remove that, do follow below methods.
Option 1 : Change to Custom Image/Icon
You just need to put above code into your active theme functions.php, at the end of file.
function tt_custom_paypal_icon($iconUrl) { return 'https://www.paypalobjects.com/webstatic/en_MY/mktg/logos/pp_cc_mark_37x23.jpg'; // change this to your image url or uploaded WordPress image url. } add_filter('woocommerce_paypal_icon', 'tt_custom_paypal_icon');
So the result will be:

Option 2 : Remove large paypal icon and the link ‘What is Paypal?’
Add below code into your active theme custom.css:
li.payment_method_paypal img, a.about_paypal { display: none !important; }
And the result will be:

hi there,
great post … but if i want to add a little icon like paypal in other payment methods?
an icon for direct bank transfer and postepay card ..
any suggestions?
best regards.
Thanks for Providing solutions, Can we add separate payment icons with each a payment option.
Awesome help thanks. I’ve used your how to several times already when developing my woo sites.
Hi Florian, glad my WooCommerce articles have helped you. Looks liked i need to write more 🙂
OMGoodness, this was big help to me!!!!!!!!!!!!!!!!!!!!!!
My client wants to use their PayEezy gateway AND offer PayPal as an alternative, but she didn’t necessarily want to ENCOURAGE people to pay with their card via PayPal. In other words, for a lower processing fee she wants to use PayEezy for credit cards. But she also wanted them to have the option to pay with their PayPal funds if they wanted to. So while,*technically* they could also use their credit card via PayPal and she pays the higher processing fee, removing the credit card icons makes it *look like* credit cards are one option and PayPal funds are another. I hope I’m making sense! Thank you for this little trick!!
Hi Bonny, good options for payment. Glad my tips helped you on that. If you ever need WordPress / WooCommerce service, just drop me a line. Cheers!
Hello!
Can U please made a code for delete picture Creditcard? The same as Paypal
Thanks ! 🙂