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

#16
There are no plans for me to develop for ElkArte.  However there is a fairly similar code base.  If ElkArte has compatible APIS to all the old SMF calls, it may work with some manual installs.  The new version wrote for SMF 2.1 most likely won't work with ElkArte as it makes use of way more hooks, and ElkArte would have to implant those hooks to function.

That said, SD is open source software.  Anyone could fork the project and develop it for ElkArte.
#17
SimpleDesk Discussion / Re: Upgrade Roadmap
February 03, 2019, 02:19:17 PM
7.1 should be fine.  I haven't tested 7.2 yet.
SMF 2.0.15 works fine with 7.1 and so does SD.

SD will most likely work with 7.2, but SMF has some warnings and issues.
#18
Marking this resolved for the new version.  The UI changes have resolved this from what i can tell.
#19
Is there a previous error?  This is a replacement error in a buffer handler, which is near the end of the page generation process.
#20
The code is wrong not the permissions.  Which is why you receive a php error.
#21
If you are manually making changes you must be careful to ensure that the changes you made are valid code and queries.
Sometimes you can get a mod to install by uninstalling the original mod, install the second and install the original again.

The version for SimpleDesk supporting SMF's future 2.1 is edit free, which can help ensure that it works better with other modifications.

#22
Can you attach the affected file?  Looks like a bad edit from another mod.  You shouldn't proceed with mod installs if a error is detected.
#23
We do not have a released solution for a contact form.  The ones made here use SMF's SSI to handle everything and custom built pages.
#24
You can configure roles and then assign those roles to groups.  Depending on those groups grant specific access to the helpdesk or not.
#25
It has been considered but I haven't had time at the moment to add such a feature.
#26
The current system isn't designed to allow non staff members to view the ticket.
#27
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.
#28
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.
#29
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.
#30
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'], '">