Removing the terms and conditions checkbox
All our themes will include an 'I accept the terms and conditions' tick box on the checkout page (as shown in the example below).
However, you may want to hide this section so that it doesn't display.
Our platform requires that this field is completed before it will allow the checkout form to be submitted, but the field can be changed to be a hidden field.
To do so, you'll need to use the page editor and edit the checkout_address.twig file.
Locate the section in the file that relates to the terms and conditions tick box section. The exact coding that displays this section will vary from theme to theme.
We've highlighted the code that relates to this section on our example above.
You'll need to remove (or comment) all of this code.
You'll then need to replace this code with a hidden field.
<input type="hidden" name="terms" value="1">
You'll now have something that looks like the example below.