Home Forums WoodMart support forum Change quick add cart icon2

Change quick add cart icon2

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #550910

    i26980999
    Participant

    How do I customize the add shopping cart icon style in the lower right corner of the product

    #550911

    i26980999
    Participant

    screenshot. image link

    #551043

    Hung Pham
    Keymaster

    Hi i26980999,

    Thanks for reaching to us.

    Please provide URL of the mentioned page, so I can take a closer look.

    Regards,

    #551076

    i26980999
    Participant

    This is my website link

    #551283

    Hung Pham
    Keymaster

    Hi i26980999,

    Thanks for the link.

    You want to change the basket icon to the eye icon? If so, please add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS:

    .wd-add-btn.wd-add-cart-icon>a:before {
        content: "\f11a";
    }

    Regards,

    #551295

    i26980999
    Participant

    I want to change the add to cart style to another style… Not the eyes, not the eyes…

    #551319

    Hung Pham
    Keymaster

    Hi i26980999,

    Provide me with the mockup of the styles that you try to achieve and we’ll send proper instructions.

    Thanks for your patience.

    Regards,

    #551329

    i26980999
    Participant

    This is probably the style of the quick add shopping cart icon

    https://prnt.sc/AonxITj4p331

    #551529

    i26980999
    Participant
    #551569

    i26980999
    Participant

    Log in to background connection

    #551576

    i26980999
    Participant

    Help me replace this eye with a magnifying glass. Thanks

    #551578

    Hung Pham
    Keymaster

    Hi i26980999,

    Please add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS:

    .wd-product.product-type-simple.outofstock a.product_type_simple:before, 
    .wd-product .product_type_grouped:before {
        content: "\f130";
    }
    
    .wd-product.product-type-simple.instock a.product_type_simple:before, 
    .wd-product .product_type_grouped:before {
        content: "\f130";
    }

    Regards,

    #551602

    i26980999
    Participant

    I sent two requests in a row so you didn’t understand. I want to change the shopping cart icon to something like the one in my picture.
    Similar ones can also be

    #551697

    Hung Pham
    Keymaster

    Hi i26980999,

    In the previous message, you asked me to help you to replace eye icon with magnifying glass, please double check.

    Regards,

    #551755

    i26980999
    Participant

    One is the eyes replaced with a magnifying glass and the other is the shopping cart replaced with a basket style

    #551814

    i26980999
    Participant

    .wd-product.product-type-simple.instock a.product_type_simple:before,
    .wd-product .product_type_grouped:before {
    content: “\f130”;
    } This code how can i change my own uploaded png image as icon. Thanks

    #551876

    Hung Pham
    Keymaster

    Hi i26980999,

    Please remove previous code and use below one:

    
    /* Replacing eye icon with magnifying glass */
    .wd-product.product-type-simple.outofstock a.product_type_simple:before, 
    .wd-product .product_type_grouped:before {
        content: "\f130";
    }
    
    /* Replacing shopping cart icon with basket */
    .wd-product.product-type-simple.instock a.product_type_simple:before, 
    .wd-product .product_type_grouped:before {
        content: "\f126";
    }

    I kindly recommend you to use font icons for better display.

    Regards,

Viewing 17 posts - 1 through 17 (of 17 total)