Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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?
Solved! Go to the solution
This is an accepted solution.
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;
}
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?
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
hello if you provide the store link it whould be easy and which theme you have use?
This is an accepted solution.
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;
}
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;
}
Yes it did, thank you soo much. Can you do it on the product page? The problem there still persists.
Please mark the solution @ekart
.product-single__button-payment{
opacity: 1 !important;
pointer-events: visible !important;
}
Thank you, the button is active but the checkbox is still on the product page.
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?