Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - tfs

#16
SimpleDesk Support / Re: Only one attachment?
March 28, 2016, 03:15:04 PM
By attaching one and clicking on browse again I am able to post more than one attachment to a new ticket or a reply.
#17
SimpleDesk Support / Re: Changing the Email..
December 30, 2015, 05:22:25 PM
Go to [Admin/Configuration/Languages] - Click on English. In the bottom right corner select "Email Notifications" in the SimpleDesk category.

All of your email templates are editable in there.
#18
SimpleDesk Tracker / Re: Re-order custom fields
December 07, 2015, 06:25:14 PM
I recall when Arantor left and we released before this was done... and I wondered if we didn't just lose a fleeting idea. :)
#19
1) The updated column shows the last date of ticket updates. The request to me was a column that showed a simple number, which was the number of days since the ticket was CREATED.

3) I recall Arantor lamenting that he did it this way. It creates confusion is what I've experienced.

4) I have a search system that I created with Arantor's help. But it's not particularly powerful.
#20
SimpleDesk Team Blog / Re: SimpleDesk 2.1 for SMF 2.1
December 05, 2015, 02:45:38 PM
[[ LIKE ]]
#21
Good luck!
#22
 ;)

Wow... your first post in more than 5 1/2 years! Things are starting to awaken in the SimipleDesk world. This is exciting!
#23
Enhancement request from my guys who are using this every day.

1) Add a column to main grids for ticket age (in days).
2) Add a column to main grids for displaying output of Tally plugin. In our case it would show the total billable time on a ticket.
3) Combine "Tickets Awaiting Staff Response" and "Tickets Awaiting User Response" into one grid.
4) Search - This one could be made SO much better.
5) Ability to create custom "filters" and activate them, so that a particular user sees only tickets where title contains "XYZ" or body contains "123." (for instance) This is separate from Departments. A user would/could create their own filters and it would be active while looking at the main grids.
6) Ability to have a reply on a ticket that is visible only to staff, and which isn't logged, and doesn't trigger an email to the customer. It would look similar to how a "deleted" reply now appears with a red background, but it would be some color other than red to distinguish it from deleted replies.

TFS

Edit: adding a #7
7) Allow reordering of items in a "Select from" [Dropdown/Radio Buttons/Multiple Items] custom fields.
#24
Quote from: NextLevelSMF on November 30, 2015, 05:09:15 AM
Thank you! Unfortunately I don't have access to that topic.

Oops, sorry. Let me quote the important parts here.

Quote from: tfs on September 03, 2011, 11:28:21 PM
Quote from: SleePy on September 03, 2011, 07:10:25 PM
So you are looking to see the SMF custom profile fields display on tickets?

Yessir!  I'm looking to display fields 1, 2, 8 & 9.

SELECT id_field, col_name, field_name FROM `smf_custom_fields` where I_WANT!

id_field, col_name, field_name
1, cust_organi, Organization Name
2, cust_jobtit, Job Title
8, cust_08, Phone
9, cust_09, Mobile Phone


Quote from: cσσкιє мσηѕтєя on September 06, 2011, 12:11:35 PM
It's never actually sent to the template in that sense but it's there. Just need to be lazy and globalize $memberContext and it's right there.

In SimpleDesk-Display.template.php:

global $memberContext;
print_r($memberContext[$context['ticket']['member']['id']]);


That array will contain cust_organi, cust_jobtit and the rest of them. So you then just need to add them where you want them to be in the template. And of course remove the print_r() line. So to add them right below the username in the ticket details column:

Code (Find) Select
<li id="item_userstarted">
<dl>
<dt><img src="', $settings['default_images_url'], '/simpledesk/user.png" alt="" class="shd_smallicon" /> ', $txt['shd_ticket_user'], ':</dt>
<dd>', $context['ticket']['member']['link'], '</dd>
</dl>
</li>

Code (Add after) Select
<li id="item_organi">
<dl>
<dt><img src="', $settings['default_images_url'], '/simpledesk/user.png" alt="" class="shd_smallicon" />Organization name:</dt>
<dd>', $memberContext[$context['ticket']['member']['id']]['options']['cust_organi'], '</dd>
</dl>
</li>


And so on. As you can see you have to edit each "label" yourself since it doesn't fetch that itself. If that's a problem you need another query to find them, unless I'm being stupid. You also may want to give each of them their own icon instead of user.png.

Quote from: tfs on September 07, 2011, 02:49:21 AM
Looks like the template has a glitch in it.  It looks OK on the screen, in that the custom fields are displayed.

https://www.x.com/helpdesk/index.php?action=helpdesk;sa=ticket;ticket=1454.msg12839
8: Undefined index: cust_09
File: /x/helpdesk/Themes/default/sd_template/SimpleDesk-Display.template.php
Line: 103

https://www.x.com/helpdesk/index.php?action=helpdesk;sa=ticket;ticket=1454.msg12839
8: Undefined index: cust_08
File: /x/helpdesk/Themes/default/sd_template/SimpleDesk-Display.template.php
Line: 96

https://www.x.com/helpdesk/index.php?action=helpdesk;sa=ticket;ticket=1454.msg12839
8: Undefined index: cust_organi
File: /x/helpdesk/Themes/default/sd_template/SimpleDesk-Display.template.php
Line: 89

Quote from: cσσкιє мσηѕтєя on September 07, 2011, 09:47:05 AM
Ah, that's stupid of me. You'll want to make sure they actually have a value first:

',!empty($memberContext[$context['ticket']['member']['id']]['options']['cust_organi']) ? $memberContext[$context['ticket']['member']['id']]['options']['cust_organi'] : '','

That makes sure it only shows if there's something to show, if not it'll just be empty. You can of also put the entire thing in an if statement so it doesn't show the icon and the label either if the field is empty.
#25
The code edits I posted came from Arantor, though I don't remember where he posted it. Might have been via email, or even over on Wedge. But it has been working for me for years now.
#26
Install SMF 2.1 beta 2
Install SimpleDesk from Git 11/29/2015 - 7p Pacific Time
I think it's  640cb41

On main screen of help desk see the following...

QuoteWarning: Missing argument 2 for shd_error_types() in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2037

Warning: Missing argument 3 for shd_error_types() in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2037

Warning: Missing argument 4 for shd_error_types() in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2037

Warning: Missing argument 5 for shd_error_types() in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2037

Notice: Undefined variable: file in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2045

Notice: Undefined variable: error_message in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2045

Notice: Undefined variable: file in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2047

Notice: Undefined variable: error_message in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2047

Notice: Undefined variable: error_message in /homepages/9/d299421546/htdocs/180support/web_root/Sources/sd_source/Subs-SimpleDesk.php on line 2047
#27
Ping to Sleepy. Can this be made part of the 2.1 release?
#28
Cool beans! :)
#29
I have not run into this issue for a long time.
#30
Funny that I haven't gotten this for a very long time... perhaps years, and then suddenly I got a rash of them two days ago. Presumably because I haven't been digging around the admin area for a long time because there's been no need. But in my log I now see this...

https://www.domain.tld/helpdesk/index.php?action=admin;area=helpdesk_options;sa=tally;aab84b5=7288af14de9e17f5779eb1757eb145e9
8: Undefined index: label
File: /xxx/helpdesk/Themes/default/GenericMenu.template.php
Line: 327

There was a whole list of them, as I perused the admin area... all on line 327 of GenericMenu.template.php

sa=display
sa=posting
sa=admin
sa=standalone
sa=actionlog
sa=notifications
sa=tally

<a class="firstlevel" href="', isset($tab['url']) ? $tab['url'] : $menu_context['base_url'] . ';area=' . $menu_context['current_area'] . ';sa=' . $sa, $menu_context['extra_parameters'], isset($tab['add_params']) ? $tab['add_params'] : '', '"><span class="firstlevel">', $tab['label'], '</span></a>