- Edited
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 ?
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 ?
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.
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 ;)
Worked for me ...
Thank you 4ice
This is a really nice mod.