Jbro Posted September 3, 2018 Share Posted September 3, 2018 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 0 Quote Link to comment Share on other sites More sharing options...
WHMCS ChrisD Posted September 3, 2018 Share Posted September 3, 2018 @Jbro thanks for your post! At this time, its not possible to add more priorities only ticket department & statues i'm afraid 0 Quote Link to comment Share on other sites More sharing options...
Jbro Posted September 3, 2018 Author Share Posted September 3, 2018 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 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted September 3, 2018 Share Posted September 3, 2018 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"); 0 Quote Link to comment Share on other sites More sharing options...
Jbro Posted September 3, 2018 Author Share Posted September 3, 2018 Thanks a lot for you help 0 Quote Link to comment Share on other sites More sharing options...
Jbro Posted September 3, 2018 Author Share Posted September 3, 2018 OK it works but now I have another problem , If some body simply sends email to open ticket the priority is not low is there any way to incude tickets opened by email? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted September 3, 2018 Share Posted September 3, 2018 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. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.