Removing the "Priority" Column from the Main Table (Instructions)
Posted: Thu Jun 12, 2025 3:25 am
If someone does not need the "Priority" column, in this case, the following code should be removed from the file inc/ticket_list.inc.php:
And this block from the table header section:
Code: Select all
echo '<td class="td-flex">' . hesk_get_admin_ticket_priority_for_list($ticket['priority']) . ' </td>';
Code: Select all
<th class="sindu-handle <?php echo $sort == 'priority' ? $sort_direction : ''; ?>">
<a href="<?php echo $href . '?' . $query . $sort_possible['priority'] . '&sort='; ?>priority">
<div class="sort">
<span><?php echo $hesklang['priority']; ?></span>
<i class="handle"></i>
</div>
</a>
</th>