Can you hide the Shopify Inbox on mobile device pages?

Can you hide the Shopify Inbox on mobile device pages?

Lily25
Tourist
3 0 1

The Shopify Inbox is amazing for getting in touch with potential buyers, but can it be hided on mobile devices' pages? As you know, mobile phone's screen is smailer than PC but the icon of Shopify Inbox is too big for such a screen. 

Replies 4 (4)

Lily25
Tourist
3 0 1

@SidouLF any suggestions on this issue?

Lily25
Tourist
3 0 1

if anyone has the same issue, I found a solution, just follow these steps

 

1. Go to Online Store -> Theme -> Edit code

2. Open file theme.liquid then add these code below to above the </head> tag

 

<style> iframe#dummy-chat-button-iframe{ display: none; } </style>

 

aarsaln
Shopify Partner
10 0 1

div#shopify-chat {
display: none !important;
}

use this 

If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact Us
Skype: arsalan29khan
Email me directly - arsalan29khan@gmail.com

Husain53
Shopify Partner
1 0 0

in theme.liquid put the below code before </head>

{% style %} @media screen and (max-width: 670px) { div#shopify-chat{ display: none !important; }} {% endstyle %}


You can also check below site in mobile and desktop for verification 


ramakra.com

 

works for me