I will modify one line in the language file:
$hesklang['moved_to']='This ticket has been moved to the new category';
To
$hesklang['moved_to']='This ticket has been moved to %%CATEGORY%%';
is it possible?
don't work for me :/
Can i integrate %%CATEGORY%% in the language file
Moderator: mkoch227
Re: Can i integrate %%CATEGORY%% in the language file
What version of HESK are you using?
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: Can i integrate %%CATEGORY%% in the language file
HESK version: 2.5.5Klemen wrote:What version of HESK are you using?
PHP version: 5.4.26 (MySQLi)
MySQL version: 5.5.32-cll-lve
Re: Can i integrate %%CATEGORY%% in the language file
The tag you mentioned (%%CATEGORY%%) only works in EMAIL subject, it doesn't work for other language variables.
You will need to do it manually in the admin/move_category.php file, for example find
and ABOVE that line add
You will need to do it manually in the admin/move_category.php file, for example find
Code: Select all
$need_to_reassign = 0;
and ABOVE that line add
Code: Select all
$hesklang['moved_to'] = str_replace('%%CATEGORY%%', $row['name'], $hesklang['moved_to']);
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