Version of script: 2.8.2
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi, I'm trying to get rid of the default statuses (and keel only the custom ones) installed by Hesk. Commenting the section "HESK default statuses:" is not working:
Code: Select all
// // HESK default statuses:
// //
// // 0 = NEW
// $hesk_settings['statuses'][0] = array(
// 'name' => $hesklang['open'],
// 'class' => 'open',
// );
// // 1 = CUSTOMER REPLIED
// $hesk_settings['statuses'][1] = array(
// 'name' => $hesklang['wait_reply'],
// 'class' => 'waitingreply',
// );
// // 2 = STAFF REPLIED
// $hesk_settings['statuses'][2] = array(
// 'name' => $hesklang['replied'],
// 'class' => 'replied',
// );
// // 3 = RESOLVED
// $hesk_settings['statuses'][3] = array(
// 'name' => $hesklang['closed'],
// 'class' => 'resolved',
// );
// // 4 = IN PROGRESS
// $hesk_settings['statuses'][4] = array(
// 'name' => $hesklang['in_progress'],
// 'class' => 'inprogress',
// );
// // 5 = ON HOLD
// $hesk_settings['statuses'][5] = array(
// 'name' => $hesklang['on_hold'],
// 'class' => 'onhold',
// );