Have you checked these first?
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
Note: Never paste the contents of your ost-config.php file here; it holds your database credentials.
Two quick checks before posting: try clearing your browser cache, and press SHIFT+O on any Staff Panel page to enter Safe Mode (a stock osTicket with no enhancements). If the problem still shows in Safe Mode, it's in osTicket itself, not osTicket Awesome. But let us know about the issue either way.
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
This forum is public. Never post order numbers, full license keys, email addresses, or payment details.
This is the place for general questions about how billing and licensing work — renewals, activation, staging slots, plan differences, and what happens when a license lapses.
For anything tied to your specific account, refund, or payment, contact us directly instead.
Hello,
I installed the theme today in our help desk and the desktop version works great. The mobile version shows tickets assigned to me but any links when expanding the hamburger icon do not do anything. If I went to the mobile version on ios and force push on the link it will open in a new tab with the content requested but it will not load in place by just simply tapping on the link.
anyone having this issue?
Thanks!
EDIT: I tried the mobile demo from this website also, on the staff demo the links on the hamburger menu also do not work.
hello, same for me
osTicket v1.14.3 // osTicket-1.14.3-Awesome-101
PHP 7.2.24-0ubuntu0.18.04.6 // MySQL 5.7.31 // Apache/2.4.29 (Ubuntu) web server
is there a workaround for this issue? I had to revert to the old interface when we scheduled to launch the changes because the selling point for our techs was the mobile interface which is not currently working. If anyone knows if there is a way please let me know I was thinking of maybe giving it another go this weekend.
Thanks
Yikes! I'm looking into this and will come up with a solution ASAP.
Thank you for the reports.
Okay, I have a fix for this.
You have 3 options to fix this on your end.
- You can install the hotfix release osTicket-1.14.3-Awesome-101a.zip
- You can wait for a few days and upgrade to the next release (osTicket-1.14.3-Awesome-102) which should be ready in a few days
- Or you can manually apply the simple fix below:
Open /osta/inc/staff-foot.html
Change Line 36 from:
$("#sidr-right").on("click",function(e) {
e.preventDefault();
});To:
$("#sidr-right").on("click",function(e) {
if ( $(e.target).hasClass("osta-task") ) e.preventDefault();
else e.stopPropagation();
});
Thank you so much for such a prompt response to this issue. I really appreciate it!