Card Icons Disappeared Again
-
I used to use the following code to add back the visa and Mastercard icons on my checkout page as it was removed by yourself a few versions back
function add_credit_card_gateway_icons( $icon_string, $gateway_id ) { if ( 'stripe' === $gateway_id ) { $icon_string = '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />'; $icon_string .= '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />'; $icon_string .= '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />'; } return $icon_string; }
However with the latest update of 6.5.0 this code no longer works. So has something changed again and you can no longer display the card icons on checkout?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Card Icons Disappeared Again’ is closed to new replies.