Forum Replies Created
-
In reply to: Plug-in Audit
May 7, 2021 at 2:56 pm #7643stevland
KeymasterSorry for the delay. I will find a solution for this next week!
In reply to: Rodapé logotipo
May 7, 2021 at 2:55 pm #7642stevland
KeymasterDesculpe, isso não é compatível.
Mas vou passar esta questão para o Fórum de Modificações e talvez alguém tenha uma ideia para você.
In reply to: PHP Errors after OSTheme swap
May 7, 2021 at 2:52 pm #7641stevland
KeymasterIf you’re still having trouble let me know what version you are running.
What do you mean by “a short mod”?
The second error is related to 2 Factor Authentication.
In reply to: The search box is not visible on white background
May 7, 2021 at 2:49 pm #7640stevland
KeymasterAdd the following code to Admin Panel > Theme > Custom CSS.
The first group is the search field as it displays when inactive.
The second group is when it is in focus.
background-color and border-color should be self-explanatory. color refers to the color of any text that is entered by the user.
Adjust the colors as you see fit.
form[action="kb.php"] #basic_search .input.attached input, form[action="orgs.php"] .input.attached input, form[action="users.php"] .input.attached input, form[action="tasks.php"] .input.attached input, form[action="tickets.php"] .input.attached input {
background-color: #ddd;
}
form[action="kb.php"] #basic_search .input.attached input:focus,
form[action="orgs.php"] .input.attached input:focus,
form[action="users.php"] .input.attached input:focus,
form[action="tasks.php"] .input.attached input:focus,
form[action="tickets.php"] .input.attached input:focus {
background-color: #ccc;
border-color: #eee;
color: #000;
}
In reply to: Styling off on the sticky bar
May 7, 2021 at 2:40 pm #7639stevland
KeymasterI’m afraid the sticky bar icons have to be white. That is a hard limitation of the design for now.
I’ll have to suggest that you make the sticky bar background darker, which of course you can do in Admin Panel > Theme > Color Theme.
I’m not sure how you got the refresh icon to show up as purple, I thought it was hard coded to be white. Custom CSS?
In reply to: Can’t create password for user accounts
May 7, 2021 at 2:34 pm #7638stevland
KeymasterP.S. It sounds like it will be fixed by upgrading. So maybe start there.
In reply to: Can’t create password for user accounts
May 7, 2021 at 2:33 pm #7637stevland
KeymasterSounds like an osTicket issue, rather than an osTicket Awesome issue.
What happens if you try it from vanilla osTicket? (press Shift + O)
Actually, see this:
https://forum.osticket.com/d/97597-resolved-user-reg-error-incorrect-description-of-a-min-max-intervalIn reply to: Force Desktop View
May 7, 2021 at 2:30 pm #7636stevland
KeymasterI’m afraid there is no elegant way to do this.
The layout “breakpoints” (to use web design nomenclature) are hard-coded and it would be nearly impossible to make them user-configurable.
The only solution I can think of (and you’re not going to like this) is to zoom out in your browser. Which would make everything very small, but would force the desktop layout.
If I think of anything else I’ll let you know, but that’s about all I have for you.
In reply to: Translation issue
May 7, 2021 at 2:23 pm #7635stevland
KeymasterThanks, @JulienVDC!
In reply to: Display conflict with Attachment Inline Plugin
March 31, 2021 at 4:37 pm #7573stevland
KeymasterHey @theteflacademy,
Thank you for the very detailed bug report and screenshots. Very helpful!
I added this to my list of things to address and will hopefully have a fix soon.
In reply to: TAT figures in ticket queue
March 31, 2021 at 4:32 pm #7572stevland
KeymasterHi @Devi1903,
Perhaps someone else will jump in with ideas. But, speaking for myself, this is beyond the scope of what I have time to think about.
Keep in mind, however, there there is nothing osTicket Awesome specific about your questions.
In other words, you could post the same questions in the osTicket / Modifications forum and at least 100x more users will see them.
Just remember to press SHIFT + O to display the ticket queue in vanilla osTicket before making screenshots. 😉
(Oops. On second thought, you would have to apply the same modifications to osta/old/include/staff/templates/queue-tickets.tmpl.php, but it might be worth the effort to do so).
In reply to: Invoice Missing
March 31, 2021 at 4:25 pm #7571stevland
KeymasterI sent it to your Gmail account on March 22nd.
I forwarded another copy to you just now. Check your Spam folder.
In reply to: In-site translations not being applied
March 25, 2021 at 8:19 pm #7556stevland
KeymasterHi @JulienVDC,
That is an upstream issue, actually.
In other words, it is an issue with osTicket itself.
When they implemented customizable Ticket “queues” around v.11 they broke a bunch of stuff to do with translations, and I don’t think they’ve managed to sort out how they are going to fix those things yet.
If you want to see for yourself, open my vanilla osTicket 1.14.3 demo Ticket Status page:
https://osticketawesome.com/o/1.14.3/scp/lists.php?id=1Add a French translation for one of the custom statuses (e.g. To Be Invoiced).
Now go to the Profile > Preferences page:
https://osticketawesome.com/o/1.14.3/scp/profile.php#preferencesSet the Preferred Language to French.
Now go to the Open queue:
https://osticketawesome.com/o/1.14.3/scp/tickets.php?queue=1Note that the translation is still missing from the Ticket Status drop-down menu.
In fact, this issue continues to exist in v1.15.2.
If you want, you can report this issue on GitHub:
https://github.com/osTicket/osTicket/issuesI would do so myself, but I already have a related issue report (“Translations Missing“) from October of 2019 that is still open:
https://github.com/osTicket/osTicket/issues/5098I wish I could do more, but this is far beyond my particular skill set. And so, we wait.
In reply to: Priority with "conditional formatting"
March 25, 2021 at 7:43 pm #7555stevland
KeymasterHi @itcubed,
I have been working intimately with osTicket for close to a decade now, and people keep making me aware of features that I had no idea existed.
The ability to highlight rows based on conditions is something I hadn’t stumbled upon.
In any event, it turns out this is a super simple fix.
I will include this in future releases, but if you want to implement it now add the following to Admin Panel > Theme > Custom CSS:
td.osta_priority div {
display: none;
}
That’s it!
I see a couple of other minor glitches with the conditional highlighting on that I will try to resolve for the next release.
In reply to: Have 4 columns for Ticket Details and Custom forms
March 25, 2021 at 7:24 pm #7554stevland
KeymasterYeah, that is a tall order @Devi1903.
The problem is, unlike the fields in the first blue circle, the fields in the second circle are not static.
That’s why you can’t “find” the code, and it’s why the osTicket devs haven’t attempted to organize that data into columns.
It’s hard to explain, but your idea of displaying that custom data in columns would probably be much harder to implement than you imagine.I do agree with the idea in principle — it would look a lot better and take up less room. But I’m afraid to go there. I expect it would be a can of worms. Sorry. 🙁But thanks for the suggestion.Now that I think about it, I actually implemented this exact sort of thing on the Client side. If you look at the Other Resources section of the Client Demo home page you’ll see that the list is dynamically organized into two columns.
If you then press SHIFT + O and look at the same page in vanilla osTicket you’ll see that the Other Resources list is a single column by default.
I’ve used a third-party jQuery script called Columnizer jQuery Plugin to achieve the two column layout, which then reverts back to a single column in the mobile layout.
I will think about your implementing your idea in a future release. Don’t hold your breath, but stay tuned.