• Resolved trish8981

    (@trish8981)


    Hi

    I have an issue 1/2 way resolved. I thought I fixed the with CSS but it removed all the check/radio boxes.

    I used the code you gave me and it fixed the issue but now I have 2 gray checkboxes. I need to remove the checkbox right next to “Save Account”. The “other” checkbox is where it needs to be.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could remove the checkbox next to “Save Account with:

    #wc-authnet-new-payment-method {
      display:none;
    }

    However, this is no good because then the user can’t tell if the option is selected or not. Note that the circle things don’t change if the option is selected. The circle things are bullet points, not dynamic indicators like a checkbox.

    So I suggest leaving the checkbox and removing the circle things:

    .woocommerce-checkout #payment ul.payment_methods li label:before {
      display:none;
    }
    .woocommerce-checkout #payment ul.payment_methods li label {
      padding-left:0;
    }
    Thread Starter trish8981

    (@trish8981)

    Hi Lorro

    Actually I tested the 1st method (leaving the circles) and it works perfectly! Marking resolved and thanks so much the quick assistance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove extra Terms/Conditions Checkbox’ is closed to new replies.