Script URL:
Version of script: 2.8.2
Hosting company: HostingMatters
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution: custom-text.php
Write your message below:
Using article: https://www.hesk.com/knowledgebase/index.php?article=88.
I have added custom-text.php relating to customer interface. Basically changing the word ticket to question. Made changes in Dreamweaver, uploaded to /language/en folder, tested (https://www.pbgv.org/help/language/en/custom-text.php) and PHP is OK. However, interface wording has not changed (https://www.pbgv.org/help/). Below is custom text:
<?php
/*
* ==> HOW TO CUSTOMIZE TEXT
*
* Follow this guide:
* http://www.hesk.com/knowledgebase/?article=88
*
* ==> IMPORTANT: FILE ENCODING
*
* This file *must* be saved in UTF-8 encoding without byte order mark (BOM)
* Test chars: àáâãäåæ
*
* http://www.hesk.com/knowledgebase/?article=87
*
*/
// ADD AND MODIFY TEXT BELOW THIS LINE
// CUSTOMER INTERFACE
$hesklang['your_ticket_been']='Your question has been';
$hesklang['submit_ticket']='Submit a question';
$hesklang['sub_ticket']='Submit question';
$hesklang['reply_submitted_success']='Your reply to this question has been successfully submitted';
$hesklang['view_your_ticket']='View your question';
$hesklang['ticket_submitted']='Question submitted';
$hesklang['ticket_submitted_success']='Your question has been successfully submitted! Question ID';
$hesklang['your_ticket']='Your question';
// DO NOT CHANGE BELOW
if (!defined('IN_SCRIPT')) die('PHP syntax OK!');
custom-text.php changes to customer interface not working
Moderator: mkoch227
Re: custom-text.php changes to customer interface not working
You are missing at least one variable (probably more):
There are several variations that are the same in English but could differ in other languages.
What I would do is search the text.php file for the word "ticket" and copy/paste each line you find into the custom-text.php to make sure you have everything covered.
Don't forget to modify the email templates too (Admin panel > Tools > Email templates).
Code: Select all
$hesklang['sub_support']='Submit a question';
What I would do is search the text.php file for the word "ticket" and copy/paste each line you find into the custom-text.php to make sure you have everything covered.
Don't forget to modify the email templates too (Admin panel > Tools > Email templates).
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: custom-text.php changes to customer interface not working
Wow...that's a lot of "tickets":) It now works. Thank you, Veronica