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

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
shddcit
Posts: 60
Joined: Wed Mar 30, 2022 3:54 pm

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

Post 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>
Post Reply