Disable Bubble invi...
 
Share:
Notifications
Clear all

[Solved] Disable Bubble invitation on mobile

4 Posts
2 Users
0 Likes
627 Views
Posts: 3
Topic starter
(@dein-finanztalent)
Active Member
Joined: 4 years ago

Hi,

is it possible to disable the bubble invitation on mobile, but the invitation stays active on common computer?

Thanks in advance!

3 Replies
Asti
Posts: 7056
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi @dein-finanztalent,

You can use the CSS code for this purpose:

@media screen and (max-width: 600px){
#wpd-bubble-wrapper{
display:none !important;
}
}

Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again. 

Also, please try on incognito mode if you're checking on mobile devices. Because mobile browsers have a hard cache, you'll not be able to see the change immediately.

Posts: 3
Topic starter
(@dein-finanztalent)
Active Member
Joined: 4 years ago

Thanks for your fast reply!

But I actually look for another solution.

Your CSS code disables the complete bubble on mobile. Actually, I would like that the bubble symbol itself is still active, but the invitation message will not occur on mobile.

Is it possible?

Thanks in advance!!

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7056

@dein-finanztalent,

Sure, please remove the code provided in the previous post and use this one: 

@media screen and (max-width: 600px){
#wpd-bubble-add-message{
display:none !important;
}
}
Share: