Is there any way to hide feedback button in mobiles

Avatar
  • updated
  • Answered

Is there any way to hide feedback button in mobiles ?

Or may be is there any way i can add custom class name to the button Like i want to hide "feedback" button in mobile device so if i add "hidden-mobile" class, bootstrap library will automaticaly hide it in mobile. But right now i dont see any provision. Is there any other way around ?

Amit

Duplicates 1
Is there a way for exporting the database of our installation?
Is it possible to export the database of our own forums in any form of data?
Pinned replies
Avatar
Sergey Stukov co-founder
  • Answer
  • Answered

Case-1: If you already know on you javascript side that website opened on mobile.  You can add something like this to you JS code to hide feedback button.


$(".ue-tab-container").hide();


Case-2: Insert into your website CSS following string.


@media (max-width: 767px) {
  .ue-tab-container {
    display: none !important;
  }
}



Avatar
Sergey Stukov co-founder
  • Answer
  • Answered

Case-1: If you already know on you javascript side that website opened on mobile.  You can add something like this to you JS code to hide feedback button.


$(".ue-tab-container").hide();


Case-2: Insert into your website CSS following string.


@media (max-width: 767px) {
  .ue-tab-container {
    display: none !important;
  }
}