Cart Settings Doestn Work

Topic summary

A user is experiencing an issue where the checkout/payment button remains inactive unless customers check a “Terms and Conditions” checkbox in the cart. They want to completely remove this checkbox requirement.

Initial Problem:

  • Payment button disabled until T&C checkbox is approved
  • Issue appears in both cart and product pages
  • User unable to find solution in theme settings or Liquid code

Solution Progress:

  • Community helpers requested store URL for diagnosis
  • Store identified as using Aceno theme
  • CSS code provided to hide checkbox and enable button in cart/mini-cart:
    • Hides terms checkbox elements
    • Forces checkout button to be active using opacity: 1 and pointer-events: visible

Current Status:

  • Cart page issue: Resolved
  • Product page issue: Partially resolved - Button is now active, but checkbox still visible
  • Additional CSS provided for product page button activation
  • User awaiting final fix to hide checkbox on product page
Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

Hello, the payment button is not activated unless I approve the Taxes section in the shopping cart and the calculated shipping section during checkout (I accept Terms and Conditions). I want to remove this section completely but I couldn’t find a solution from the theme settings or with liquid code.

The payment button does not work unless I approve the section I marked in the image below. I want to remove this section completely. Can you help me with this?

Hi @mustafacihanc ,

Thank you for reaching out to the Shopify community. I’d be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?

hello if you provide the store link it whould be easy and which theme you have use?

https://s1m0wp-11.myshopify.com/products/solid-perfume-ek109-dior-sauvage-muadili

Hello, the issue appears on the product page of the website mentioned here. Please help theme aceno

Hi @ekart ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.cart-modal__btn--checkout {
    opacity: 1 !important;
    pointer-events: visible !important;
}
2 Likes

Hayır, çalışmıyor. Basit kodlar denedik ama çalışmıyor.

Sorry, the code was working. It was taken care of in the mini basket. but the checkbox is still visible and the situation is still the same on the product page.

.ajaxcart__policies.mb-2.pb-1.lh-1 {
    display: none !important;
}

input#terms_conditions {
    display: none !important;
}

label.form-check-label {
    display: none !important;
}

.cart-modal__btn--checkout {
    opacity: 1 !important;
    pointer-events: visible !important;
}

1 Like

Yes it did, thank you soo much. Can you do it on the product page? The problem there still persists.

After adding this code to theme.css file, the problem is solved, thank you very much. I have the same problem with the checkout button on the product page. Do you have a solution for that too?

https://s1m0wp-11.myshopify.com/products/solid-perfume-ek109-dior-sauvage-muadili?variant=46212434526447

Please mark the solution @ekart

1 Like

@ekart ,

.product-single__button-payment{
 opacity: 1 !important;
 pointer-events: visible !important;
}
1 Like

Thank you, the button is active but the checkbox is still on the product page.