Hi,

Is it possible to change client login that when client click on a link from email and click login, he will go to the ticket instead of list of all tickets.

Any mods required to make that work ?

15 days later

Hi artur,

this is indeed possible. For this to work you will need to change the file ./login.php

Here you will find the following line (around line 56):

@header("Location: view.php");

change this to:

@header("Location: view.php?id=".$ticket->getExtId());

and it should work.

18 days later

Hi artur,

this is indeed possible. For this to work you will need to change the file ./login.php

Thanks, I figure it out myself before I read that though ;)

9 months later
Write a Reply...