Page 1 of 1

Removing the "Priority" Column from the Main Table (Instructions)

Posted: Thu Jun 12, 2025 3:25 am
by shddcit
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:

Code: Select all

echo '<td class="td-flex">' . hesk_get_admin_ticket_priority_for_list($ticket['priority']) . '&nbsp;</td>';
And this block from the table header section:

Code: Select all

<th class="sindu-handle <?php echo $sort == 'priority' ? $sort_direction : ''; ?>">
    <a href="<?php echo $href . '?' . $query . $sort_possible['priority'] . '&amp;sort='; ?>priority">
        <div class="sort">
            <span><?php echo $hesklang['priority']; ?></span>
            <i class="handle"></i>
        </div>
    </a>
</th>