Hello,
I want to hide the ip adres when printing a ticket. It is useless info for my customers. I tried a few things in the print.php script but that dont fixes the problem for me. Does someone know what to edit/disable?
Other question i dont know if it is an easy question,
I want to add a small order system. We uses HESK in a Phone repair store, the thing i want, is a small excel field, where i can enter the following:
Total - Product - Price etc.
Is it posible to add PHPExcel or something like that? in the menu bar?
Thanks..
Greetings from holland
Hide IP From print script & order list
Moderator: mkoch227
Re: Hide IP From print script & order list
To hide the IP address you need to delete this code from the "print.php" file:
I'm afraid that things like adding PHPExcel to HESK is more complicated and out of the scope of my support.
You will probably need to hire a PHP developer for such modifications.
Code: Select all
<tr>
<td>' . $hesklang['ip'] . ':</td>
<td>' . $ticket['ip'] . '</td>
</tr>
You will probably need to hire a PHP developer for such modifications.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
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


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
Re: Hide IP From print script & order list
Thanks for your replyKlemen wrote:To hide the IP address you need to delete this code from the "print.php" file:I'm afraid that things like adding PHPExcel to HESK is more complicated and out of the scope of my support.Code: Select all
<tr> <td>' . $hesklang['ip'] . ':</td> <td>' . $ticket['ip'] . '</td> </tr>
You will probably need to hire a PHP developer for such modifications.