I’m trying to remove this checkbox from the checkout.liquid on shopify+ but can’t find where to remove that section. I see the text in the en.default.json but kind of clueless on how you remove it from the actually checkout.
On Shopify Plus the modifications need to be done via code, there are no settings in the backend.
Add a custom CSS style to your checkout.liquid file, like custom-checkout.css for example
{{ "custom-checkout.css" | asset_url | stylesheet_tag }}
or just embed that directly in checkout.liquid header, as your prefer.
And then you can use CSS to hide that field. This code should work
.section--contact-information .fieldset-description {
display: none;
}
