Hello,
it's possible add before on the end of ticket form a text popup or some text written in different color?
Add popup before ticket form
Moderator: mkoch227
Re: Add popup before ticket form
Hello I add some extra text from custom-ticket.php in themes but show in all department now...
how can I show this text in only one department form?
how can I show this text in only one department form?
Re: Add popup before ticket form
Not sure which file you are editing, but if it's create-ticket.php you can use the variable $categoryId to find what the current category is.
Code: Select all
if ($categoryId == 1) {
// do this...
} elseif ($categoryId == 4) {
// do that...
}
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: Add popup before ticket form
I edit theme/hesk3/customer/create-ticket/create-ticket.php
ok i add this cycle.
ok i add this cycle.