Jump to content

Using whmcs for helpdesk and priorities idea?


Jbro

Recommended Posts

I am going to use whmcs for helpdesk too but I have a problem with only 3 priorities.  Can I add more priorities?

Also any idea on what words I should choose ?    I am thinking of using   instead of Low :  Normal , High , Critical

 

Please give me some idea  I used kayako before but time to combine into whmcs

Link to comment
Share on other sites

33 minutes ago, Jbro said:

Ok thanks is it possible to change the default priority for tickets? Right now the default priority is Medium   I want to change to Low

you can use an action hook to change the default value to Low...

<?php

/**
* Set Default Ticket Priority When Opening Support Ticket
* @author brian!
*/
 
function default_ticket_priority_hook($vars)
{
	return array("urgency" => "Low");
}
add_hook("ClientAreaPageSubmitTicket", 1, "default_ticket_priority_hook"); 

 

Link to comment
Share on other sites

3 hours ago, Jbro said:

is there any way to include tickets opened by email?

i'm not sure... TicketPiping would be the obvious hook, but I don't think you can change priorities with it.... if you don't get any other answers, it might be worth checking with Support on this for clarification and updating the thread with their response.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated