I already wrote about this subject but I did not had any answer probably because I put it mixed with other questions.
I have a problem with my clients (really they are users more than clients because I work at the university!).
The problem is that Hesk/MfH use only the variable ['name'] (which corresponds to the string "name", of course) but which implies both Name AND Surnames in some cases like, for example, in the case of the obligatory field to be filled in when submitting a ticket.
Unfortunately many of my 800 clients/users fill in that field only with their Name and *not* with their Name and Surname!
By having a label "Name" and a prefilled suggestion "Name", my experience says in fact that persons report *JUST* their Name and NOT the combination of their surname+name! And I suppose this is a general problem not only mine.
As we are a Interdepartmental University facility and our helpdesk is only for internal users, we need to identify *exactly* who was submitting a ticket (and the email is not always useful) in order to intervene. Moreover we have no problem of privacy: if someone wants to have his/her not working air conditioning system or his/her dropping taps fixed in his/her laboratory, then we must know who is who and where (s)he is located.
So I created a customized version of Hesk+MfH where I added a new variable to be put in the language strings to translate which is:
Code: Select all
$hesklang['surname'] = 'Surname and Name';
In thi file, at line 317 (MfH 3.1.0), I modified the original code:
Code: Select all
} ?> placeholder="<?php echo htmlspecialchars($hesklang['name']); ?>"
Code: Select all
index.php line 318
/*Modification */
} ?> placeholder="<?php echo htmlspecialchars($hesklang['surname']); ?>"
/*End of Modification*/
I hope this my request/suggestion of modification could be take into account for the next versions both of Hesk and MfH.
Regards,
Topoldo