News:

Loving SimpleDesk? Help us spread the word!

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 - SleePy

#31
The current system isn't designed to allow non staff members to view the ticket.
#32
There isn't any built in way and code wise while you could do some database alterations to make it happen, wouldn't be supported and may break things as the system expects to have a valid user signed in to use the system.
#33
SimpleDesk Support / Re: Alternating colours
May 14, 2017, 04:27:09 PM
There isn't a way easily to do it.  You would have to start off with that mod working in SMF, then bring in the changes it makes into the display for SimpleDesk as well.
#34
SimpleDesk Support / Re: Alternating colours
April 28, 2017, 11:56:31 PM
We don't support that mod, not that it couldn't be done.

The changes I suggested in my last post group replies based on the member id.  If the same member replies multiple times in a row, the color wouldn't change.
#35
SimpleDesk Support / Re: Alternating colours
April 22, 2017, 09:13:13 PM
If you want to change the color, I would suggest creating new names, copying the existing css for information and description and then altering it to fit your needs.  Unless you want to change those globally, as they are SMF css code and used in other parts around SMF.

If you wanted to track colors by the member, it should be possible by tracking the id_member and only changing $alt when we encounter a different id_member:

$alt = false;
$last_id_member = -1;
while ($reply = $context['get_replies']())
{
if ($last_id_member != $reply['id_member'])
$alt = !$alt;
$last_id_member = $reply['id_member'];

if (!empty($reply['is_new']))
echo '
<a id="new"></a>';

echo '
<div class="', $alt? 'description' : 'information', ' shd_reply', (!empty($context['ticket']['display_recycle']) && $reply['message_status'] == MSG_STATUS_DELETED ? ' errorbox' : ''), '" id="msg', $reply['id'], '">
#36
SimpleDesk Support / Re: Alternating colours
April 17, 2017, 09:02:08 PM
It can be by modifying the SimpleDesk-Display.template.php in the sd_template folder (in default theme folder)

look for:

while ($reply = $context['get_replies']())
{
if (!empty($reply['is_new']))
echo '
<a id="new"></a>';

echo '
<div class="description shd_reply', (!empty($context['ticket']['display_recycle']) && $reply['message_status'] == MSG_STATUS_DELETED ? ' errorbox' : ''), '" id="msg', $reply['id'], '">


Replace that with:
$alt = false;
while ($reply = $context['get_replies']())
{
$alt = !$alt;

if (!empty($reply['is_new']))
echo '
<a id="new"></a>';

echo '
<div class="', $alt? 'description' : 'information', ' shd_reply', (!empty($context['ticket']['display_recycle']) && $reply['message_status'] == MSG_STATUS_DELETED ? ' errorbox' : ''), '" id="msg', $reply['id'], '">
#37
All fixed.  Testing a SMF patch here.
#38
SimpleDesk Support / Re: Find And Repair Errors
October 15, 2016, 09:35:55 PM
Which version of SD?
#39
SimpleDesk Support / Re: Disable the Urgency option
October 15, 2016, 09:35:26 PM
You can disable it via permissions, but admins can still change them.  It will still show up on the interface.  You could remove it from the interface by modifying templates as needed.
#40
SimpleDesk Support / Re: quick reply Issue
August 14, 2016, 07:08:25 PM
Do you have any custom fields?  If so disable those as a test for now.

Something is up with that text.  Are you using a non english language or something else like Right to left?
#41
SimpleDesk Support / Re: quick reply Issue
August 14, 2016, 12:17:55 PM
Are you using another theme, if so can you test this with the default theme to make sure its not a theme related issue?

SimpleDesk's quick reply submit options are the same ones you see on the regular reply/new ticket screen.  So they should normally show.
#42
SimpleDesk Support / Re: quick reply Issue
August 13, 2016, 01:14:16 AM
Quick reply only shows if the user can reply to the ticket and has enabled in their options under their profile to use quick reply.
#43
SMF already specifies the meta charset.  You can see this even on SimpleDesk pages by viewing the source.  If you have changed all the database tables and columns where the charset is specified, this should in theory work.

SimpleDesk has not been tested with any other charsets other than the default and UTF-8.  In future versions of SMF, UTF-8 will be the only supported charset.  SimpleDesk will also follow this route and only support UTF-8.

#44
You would have to modify the database manually as SimpleDesk follows SMF's charset, but if you convert or change it later, it won't follow it.  Other than that, SimpleDesk follows what your SMF charset was set to.

SMF 2.1 will be moving all forums to use UTF-8.  So you can expect that SMF will have limited support for non-UTF-8 forums in 2.1 and beyond.
#45
I'm afraid you would have to give me more information as I'm not sure what I'm supposed to be seeing here.