|| remove chat button from check out page (Prestige 7.3.3 Theme)

Hi,
I am using the Prestige 7.3.3 theme + chat app. I would like to remove the chat button from the check out page.

https://bk0cjwgba6g0e6ns-28196274313.shopifypreview.com

Any ideas?
Thanks in advance!

Try the code below in your “checkout.liquid” file


thanks but it’s not working. there is no “checkout.liquid” in my theme. any other ideas?

I think the screenshot you pasted out is your cart page. So please try to add code above into your cart page

Hi @theithei

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • Please add this liquid in your theme.liquid file before the tag:
{% if template == 'cart' %}
div#shopify-chat-dummy {
    display: none !important;
}
{% endif %}
  • And Save.

I hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

You’re absolutely right! Sorry for the confusion of my wording. I want to remove the chat button from the cart page, but it is unfortunately not working when copied into the main-cart.liquid

maybe there is another way this could work?

Thanks for this idea, but it is not working… do you have any other ideas?