Hide IP From print script & order list

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
dnaxtreme
Posts: 6
Joined: Mon Jun 24, 2013 10:40 am

Hide IP From print script & order list

Post by dnaxtreme »

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
Klemen
Site Admin
Posts: 10135
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hide IP From print script & order list

Post by Klemen »

To hide the IP address you need to delete this code from the "print.php" file:

Code: Select all

	<tr>
		<td>' . $hesklang['ip'] . ':</td>
		<td>' . $ticket['ip'] . '</td>
	</tr>
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.
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
dnaxtreme
Posts: 6
Joined: Mon Jun 24, 2013 10:40 am

Re: Hide IP From print script & order list

Post by dnaxtreme »

Klemen wrote:To hide the IP address you need to delete this code from the "print.php" file:

Code: Select all

	<tr>
		<td>' . $hesklang['ip'] . ':</td>
		<td>' . $ticket['ip'] . '</td>
	</tr>
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.
Thanks for your reply
Post Reply