How to remove I agree with the terms and conditions box?

how to remove “I agree with the terms and conditions” box? All other tutorials are outdated or not helpful

1 Like

Hello There,

Please share your store URL and screenshot.
So that I will check and let you know the exact solution here.

LindaMEZ_0-1639984961985.png

Here is the problem, when you put something in the cart and want to proceed to checkout, the “I agree with the terms and conditions” box has to be checked, but since our customers aren’t native English speakers, they don’t understand that you have to check the “I agree with the terms and conditions” box.

Hello @LindaMEZ ,

Hope you are doing well.

You can remove that check box by adding custom CSS to your theme file, kindly please share your store URL so that we can send you the code that you can add to your theme file.

You could explain in the native language that this box needs to be
completed because removing any terms and conditions can open a can of worms
for all manner of legal issues.

Hi, https://www.lindamezga.lt/.

1 Like

Hello @LindaMEZ ,

Thanks for the store URL.

Please add the below CSS in your theme.css file at the bottom:

label {
    display: none !important;
}

Hope this will help.

Hi, sadly it did not help. That code only removed the “I agree with the terms and conditions” box, but so you could proceed to checkout, you still need to check that box. Only removing it didn’t help, I need to somehow disable it.

Hello @LindaMEZ ,

Thanks for your reply.

Please add the below code as well.

.checkbox-group.m-term-conditions-checkbox.term-conditions-checkbox-js {
    display: none !important;
}

.checkbox-group.term-conditions-checkbox.term-conditions-checkbox-js {
    display: none !important;
}

Also, the make the checkout button clickable you need to make some changes to your cart.liquid theme file.

Please check these screenshots:

http://prntscr.com/23u6qaz
http://prntscr.com/23u7e6z

http://prntscr.com/23u86lr

Hello, thank you so much for your help, but sadly I couldn’t find the code that you asked me to delete from cart.liquid. I searched with ctrl + F, but I couldn’t find where to delete the code that was provided in the print screens.

Thank you for your help.

1 Like

Hello @LindaMEZ ,

Thanks for your reply.

If you are not good at coding then I can perform the solution for you, to perform the solution by me I have sent you the collaborator access request. Please approve it so that I can check and solve your query.

Once you approve the request please notify me via private message.

Hi LindaMEZ,

We encountered the same problem, and what we did was to go to theme > customize > theme settings > cart, and uncheck “enable terms and conditions checkbox”. It works for us and we are using impulse theme.

Hope this helps.

2 Likes

This is the correct way to fix this.
The comment above where dude says to uncheck the Terms and Conditions in the Theme Settings > Cart

The other responders above are way out to lunch unfortunately. No need to add CSS code. Kind of scary people on here giving bad advice.