Home Forums WoodMart support forum Cart – Checkout "problem"

Cart – Checkout "problem"

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #152722

    sportfanatik
    Participant

    Hello,

    I have some questions …

    How do I turn off the shipping estimate from the cart?

    How do I change the background color of a pop-up message with a yellow background?

    There is a text on the checkout page for returning customer login. “If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section.” Even if I translate it in the right place the English text will not be replaced. How could this be changed?

    Is it possible to remove the country and county from the checkout page?

    And one more question 🙂

    Is it possible to replace the first name field with the last name field on the checkout page?

    Attachments:
    You must be logged in to view attached files.
    #152741

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    /*remove the shipping from the cart*/
    body .shop_table tr.woocommerce-shipping-totals {
        display:none;
    }
    
    /*change the background color of the messages*/
    body .woocommerce-message{
    background-color:red;
    }
    body .woocommerce-info{
    background-color:red;
    }
    body .wpcf7-mail-sent-ok{
    background-color:red;
    }
    body div.wpcf7-validation-errors{
    background-color:red;
    }
    body .mc4wp-success,
    body .mc4wp-error{
    background-color:red;
    }

    Replace the code as per your needs.

    You will have to find the plugin to manage the checkout fields. Our theme does not have any options to configure the checkout.

    Best Regards

    #152940

    sportfanatik
    Participant

    Hello,

    Thank you for your help, but unfortunately this code will also remove any shipping options from the checkout page.

    /*remove the shipping from the cart*/
    body .shop_table tr.woocommerce-shipping-totals {
    display:none;
    }

    The second code doesn’t change anything at all 🙁 the same yellow color remains.

    What could be the problem ?

    #152970

    Hello,

    Please replace the code:

    body.woocommerce-cart .shop_table tr.woocommerce-shipping-totals {
        display:none;
    }
    body .woocommerce-error,
    body.woocommerce-message,
    body .woocommerce-info{
    background-color: red;
    }
    body .wpcf7-mail-sent-ok{
    background-color:red;
    }
    body div.wpcf7-validation-errors{
    background-color:red;
    }
    body .mc4wp-success,
    body .mc4wp-error{
    background-color:red;
    }

    Best Regards

    #152983

    sportfanatik
    Participant

    It works, thousands of thanks!

    #153022

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Tagged: ,

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

The topic ‘Cart – Checkout "problem"’ is closed to new replies.