Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1416431

    Almusan
    Participant

    Hi there,

    How can i show paypal icon and credit cards icons on my checkout page? (before paypal a paypal icon and before Credit Card credit cards icons)

    I cant find the way to do it

    Thanks

    #1416438

    Almusan
    Participant
    This reply has been marked as private.
    #1417167

    Lely
    Moderator

    Hi There,

    We can add the following CSS on Appearance > Customize > Custom > Edit Global CSS:

    .woocommerce-checkout li.wc_payment_method.payment_method_paypal label:before {
        content: '\f1ed';
        font-family: "FontAwesome";
    }
    .woocommerce-checkout li.wc_payment_method.payment_method_stripe label:before {
        content: '\f09d';
        font-family: "FontAwesome";
    }
    

    Result should be something like attached screenshot.

    Hope this helps.

    #1417496

    Almusan
    Participant

    Hi, thank you for your answer,

    I mean something like the image i send you (with images of credit cards, and the symbol in colour of paypal, and at the right)

    #1417569

    Paul R
    Moderator

    Hi,

    You can add this under Custom > CSS in the Customizer.

    
    .woocommerce-account form .payment_methods label img, .woocommerce-checkout form .payment_methods label img {
        display: block !important;
    }
    

    Hope that helps.

    #1417753

    Almusan
    Participant

    It helps, thanks a lot

    #1417839

    Rahul
    Moderator

    Glad it helped!

    Let us know if we can help with anything else.

    Thanks.