How to change the default "search In" list order

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
wesselw17@gmail.com
Posts: 7
Joined: Wed Mar 10, 2021 1:26 pm

How to change the default "search In" list order

Post by wesselw17@gmail.com »

Script URL:
Version of script: 3.2.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:

is there any way of changing the default "search in" tag under "find a ticket". IE i would like to change "tracking ID" to a one of the custom tags "Claim Number" for instance.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: How to change the default "search In" list order

Post by Klemen »

You'll have to change file inc/show_search_form.inc.php

Open it in Notepad++ then find this exact code:

Code: Select all

$what = 'trackid';
Change it to your custom field, for example:

Code: Select all

$what = 'custom1';
Change "1" to whatever your custom field ID is.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
wesselw17@gmail.com
Posts: 7
Joined: Wed Mar 10, 2021 1:26 pm

Re: How to change the default "search In" list order

Post by wesselw17@gmail.com »

Thank you for your help
Post Reply