Page 1 of 1

Hide IP From print script & order list

Posted: Mon Aug 12, 2013 11:34 pm
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

Re: Hide IP From print script & order list

Posted: Tue Aug 13, 2013 10:47 am
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.

Re: Hide IP From print script & order list

Posted: Tue Aug 13, 2013 4:10 pm
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