Checkbox repeated unnecessarily at checkout

Topic summary

A store owner reports that customers encounter a duplicate agreement checkbox during checkout, requiring them to check the same box twice. They’ve identified what they believe is the relevant code section and are seeking guidance on how to modify it to display the checkbox only once.

Key details:

  • Issue occurs during the checkout process
  • The problematic code appears to involve cart page settings with checkbox configuration
  • The code snippet shows schema settings for cart pages with an “enable_cart_notes” checkbox option

Status: The question remains unanswered with no solutions or responses provided yet.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hello there,

When customers are checking out, they are asked to click the same agreement checkbox twice. How can I edit the code so that they are only asked to check the box once? Below is the code I believe this is located in.

{% schema %}
{
“name”: “Cart pages”,
“settings”: [
{
“type”: “checkbox”,
“id”: “cart_notes_enable”,
“label”: “Enable order notes”,
“default”: true
}
]
}
{% endschema %}

Thanks for any advice!