Okay
  Public Ticket #3014180
Remove the 'checkout' button when pressing the card
Closed

Comments

  •  11
    RanebrookZina started the conversation

    Hello

    I need to remove the 'Checkout' button from the pop-up when pressing the card. Only 'View card' should be there. Please see the screenshot attached. It's because the shipping calculates only on the card, when the customer goes straight to check out, the local pick up is chosen as standard and most of the time it's a problem. Please can I leave only one button, so they automatically go to the card first and choose the delivery option there?

  •  2,958
    Andrew replied

    Hello again,

    Use the following CSS.

    .nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart a.button.checkout {
        display: none;
    }
    

    Thanks,

  •  11
    RanebrookZina replied

    Worked like a charm, thank you :) 


    Can I ask for your help with one more question, please? On the card page when calculating shipping there are 4 lines of address. Can we leave only tho, the ones I marked? 

  •  2,958
    Andrew replied

    Hello again,

    Use this CSS>

    section.shipping-calculator-form p#calc_shipping_state_field, section.shipping-calculator-form p#calc_shipping_city_field {
        display: none !important;
    }
    

    Thanks,

  •  11
    RanebrookZina replied

    Thank you. All worked perfectly.