Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How do I remove those dynamic checkout buttons in my cart page?

Solved

How do I remove those dynamic checkout buttons in my cart page?

nijntjelover
Explorer
82 0 14

How do I removee those dynamic checkout buttons? 

 

url: Bundo.nl
I want to remove everything thats under the "afrekenen" button.

Screenshot 2023-10-19 at 12.49.00.png

Accepted Solution (1)

theycallmemakka
Shopify Partner
1723 418 435

This is an accepted solution.

Hi @nijntjelover  ,

 

Please add below code on the head of theme.liquid file.

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code just above </head> tag

 

 

<style>
.cart__dynamic-checkout-buttons.additional-checkout-buttons {
    display: none;
}
</style>

 

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

Replies 2 (2)

theycallmemakka
Shopify Partner
1723 418 435

This is an accepted solution.

Hi @nijntjelover  ,

 

Please add below code on the head of theme.liquid file.

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code just above </head> tag

 

 

<style>
.cart__dynamic-checkout-buttons.additional-checkout-buttons {
    display: none;
}
</style>

 

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

nijntjelover
Explorer
82 0 14

excellent!