Skip to content
Advertisement

Change payment card icons for WooCommerce Stripe in checkout

I would like to sort the Stripe displayed payment card icons in a different way in WooCommerce checkout.

Stripe payment card icons at WooCommerce checkout

WooCommerce Stripe plugin support does not provide custom code support so they just gave me a code snippet to modify according to my needs. This code snippet changes out the Visa payment icon:

JavaScript

Could someone please modify this code snippet to change the payment card icon order to Visa > Mastercard > Amex > Discover > JCB > Diners Club?

I would also like to completely remove the JCB and Diners Club payment icons. I’m currently using some custom CSS to hide these icons but was wondering if there’s a better way.

Advertisement

Answer

You are not using the right hook. Also the displayed icons use float:right, so they are inverted. You can also remove any icon easily.

The following will display sorted icons as Visa > Mastercard > Amex > Discover:

JavaScript

Code goes in functions.php file of the active child theme (or active theme). Tested and works.

enter image description here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement