Can you help me as well please, I tried inserting the code bellow but still cant make it hide from that page.
{% if page.handle == 'sistema-de-puntuacion' %}
{% endif %}
Core Issue:
Users want to selectively hide the Shopify Inbox chat widget on specific pages where it may be distracting, while keeping it visible elsewhere.
Primary Solution (Page-Specific):
Add conditional code to theme.liquid before the closing </head> tag:
{% if page.handle == 'page-name' %}
<style>
#dummy-chat-button{display:none !important;}
</style>
{% endif %}
Replace ‘page-name’ with the target page’s handle. One user confirmed this works after adjusting the element ID.
Template-Wide Solution:
For hiding on all pages of a specific template (e.g., blog articles), insert the same CSS code at the top of the relevant template file (like article.liquid or main-article.liquid).
Alternative Approach:
Add an id attribute to the <body> tag in theme.liquid using Liquid conditionals, then target it in custom.css to hide the chat iframe.
Ongoing Challenges:
Can you help me as well please, I tried inserting the code bellow but still cant make it hide from that page.
{% if page.handle == 'sistema-de-puntuacion' %}
{% endif %}