Forum Replies Created
-
In reply to: Ticket Overwiew – Width Problems
May 20, 2019 at 7:09 am #4205stevlandKeymasterDo you know if theres a genuine API for those marketplaces?
I haven’t heard of anything, but I haven’t looked either. I assume you’ve asked in the osTicket forum.
In reply to: How to find "New reply" notification in Ticket List [1.12 Revision 2]
May 16, 2019 at 10:31 pm #4202stevlandKeymasterYou can see the notification in action in the demo here.
Here is the HTML of the section that includes the ticket number in a div.
<td style="font-weight:bold" class="osta_ticket">
<div style="font-weight:bold">
<span class="Icon webTicket"></span>
<a style="display: inline" class="preview" data-preview="#tickets/65/preview" href="/a/1.12-2/scp/tickets.php?id=65">678775</a>
</div>
</td>
Using CSS I have hidden the ugly “webTicket” icon and neutered the bold text.
But the “font-weight:bold” styling (added by osTicket) is the key to adding the new reply icon.
Using a little CSS trickery, I’m adding a pseudo element (:after) to display the icon as a background image after the bold-styled div.
td.osta_ticket div[style="font-weight:bold"]:after {
width: 8px !important;
height: 8px !important;
background-size: 8px !important;
background-repeat: no-repeat !important;
content: '' !important;
display: inline-block;
margin: 13px 0px 0 11px !important;
background-image: url(../../osta/icons/reply.gif);
}
Ticket that don’t have a new reply do not receive the “font-weight:bold” styling from osTicket and therefore do not additionally receive the new reply icon background image from osTicket Awesome.
I hope this gives you clarification.
I’m still not entirely happy with my solution here. In fact, I want to completely redesign the ticket list again for the 10th time. Perhaps I will do so in the fall or winter.
In reply to: Ticket Overwiew – Width Problems
May 16, 2019 at 9:20 pm #4200stevlandKeymasterPlease let me know if that fix works for you, @fachmarkt so I can mark this as resolved.
In reply to: http error 500 on save theme changes
May 16, 2019 at 9:15 pm #4199stevlandKeymasterI believe this is now fixed so I will mark it as resolved.
In reply to: theme save
May 16, 2019 at 9:14 pm #4197stevlandKeymasterI believe this is fixed so I will mark it as resolved for now.
In reply to: The last Version archive corrupted
May 16, 2019 at 9:05 pm #4196stevlandKeymasterI’m sorry @hunterrd, but I don’t understand.
I downloaded and successfully opened the last 6 versions of osTicket Awesome on the Downloads page.
Are you referring to something else?
In reply to: theme save
May 16, 2019 at 2:14 pm #4192stevlandKeymasterI think I found the issue!
Unfortunately I cannot connect to your server using the FTP credentials that you gave me. But the fix is really easy:
Open /osta/functions.php
Change lines 21-22 from
"custom-backdrops"=>"01.png",
"custom-logos"=>"ost-logo.png",
to
"custom-backdrops"=>"[]",
"custom-logos"=>"[]",
That should fix it! But please let me know.
In reply to: theme save
May 16, 2019 at 1:54 pm #4190stevlandKeymasterPlease create a temporary agent account (Admin Panel > Agents > Add New Agent) using info@osticketawesome.com. Be sure to give the account full administrative privileges.
In reply to: theme save
May 16, 2019 at 1:49 pm #4189stevlandKeymasterOh yikes! Don’t post your connection info in this forum!
I copied the info and then removed it. If you send me any other private information please email it to info@osticketawesome.com. 🙂
In reply to: theme save
May 16, 2019 at 1:09 pm #4187stevlandKeymasterDo you know how to access your log files? It would be very helpful if I could see the most recent apache logs. Perhaps you could copy/paste them into an email and send it to info@osticketawesome.com.
In reply to: Transfer button gives options to change status
May 16, 2019 at 12:12 pm #4185stevlandKeymasterHi @mscfadmin,
Sorry for the trouble. This was reported 4 days ago and has been fixed in the new release.
Either upgrade to osTicket-1.12-Awesome-102 or do the following:
- open /include/staff/ticket-view-inc.php
- remove data-dropdown=”#action-dropdown-statuses” from line 93
In reply to: http error 500 on save theme changes
May 16, 2019 at 11:44 am #4183stevlandKeymasterHmmm I would like to look into this. I’ll send you a message by email.
In reply to: How to find "New reply" notification in Ticket List [1.12 Revision 2]
May 16, 2019 at 10:17 am #4181stevlandKeymasterTickets with a new reply now have an animated icon displayed to the right of the ticket #.
I don’t like the way native osTicket makes the ticket number and subject line bold when there is a new reply… I find it too jarring. But hopefully my solution isn’t too subtle!
In reply to: Ticket Overwiew – Width Problems
May 16, 2019 at 10:00 am #4180stevlandKeymasterWhoa! osTicket usually limits the subject line to 50 characters. Did you guys change this somehow? Where these tickets opened by email perhaps, or some other method that I can’t think of right now?
I did change how the subject line is truncated in the ticket list in osTicket-1.12-Awesome-102. But I didn’t adequately anticipate what would happen with such long subject lines.
For now you should add the following CSS to /osta/user-styles.css:
td.osta_subject a {
display: inline !important;
width: initial !important;
white-space: initial;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
}
That will contain the subject line and keep it from running off of the page. I will work on a permanent solution.
In reply to: theme save
May 16, 2019 at 9:31 am #4179stevlandKeymasterAre you still having trouble, @domarc?
If you are still having trouble and would like me to look into it please create a temporary agent account (Admin Panel > Agents > Add New Agent) using info@osticketawesome.com. Be sure to give the account full administrative privileges.