• With WooCommerce 2.5.5 the icons were not displaying correctly on Checkout when selected. They were displaying correctly when they were not selected. I needed to add !important to the child theme CSS to override the payment-methods.min.css. Here is an example for BACS (Bank Transfers):

    #payment ul.payment_methods .payment_method_bacs>label:before
    {
    	color:#fff !important;
    }
    #payment ul.payment_methods .payment_method_bacs>label:before {
    	content:'\f005' !important;
    }

    https://www.ads-software.com/plugins/woocommerce-payment-methods/

  • The topic ‘Icons not displaying on Checkout when selected’ is closed to new replies.