od-ana Posted October 12, 2018 Report Posted October 12, 2018 Hello Any ideas to change the ticket priority to only low medium high? Many thanks Quote
0 Jono Posted October 12, 2018 Report Posted October 12, 2018 Can't be done without modifying the files for the support manager plugin. In {blesta_dir}/plugins/support_manager/models/support_manager_tickets.php you can change lines 1230 - 1239 from public function getPriorities() { return [ 'emergency' => $this->_('SupportManagerTickets.priority.emergency'), 'critical' => $this->_('SupportManagerTickets.priority.critical'), 'high' => $this->_('SupportManagerTickets.priority.high'), 'medium' => $this->_('SupportManagerTickets.priority.medium'), 'low' => $this->_('SupportManagerTickets.priority.low') ]; } to public function getPriorities() { return [ 'high' => $this->_('SupportManagerTickets.priority.high'), 'medium' => $this->_('SupportManagerTickets.priority.medium'), 'low' => $this->_('SupportManagerTickets.priority.low') ]; } Blesta Addons and bunny 2 Quote
0 od-ana Posted October 14, 2018 Author Report Posted October 14, 2018 It works . Thanks. Jono and Blesta Addons 2 Quote
Question
od-ana
Hello
Any ideas to change the ticket priority to only
low
medium
high?
Many thanks
2 answers to this question
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.