Jump to content

Support Ticket Language


CavalloComm

Recommended Posts

from the english admin language file...

 

# Config Ticket Statuses

$_ADMINLANG['ticketstatusconfig']['pagedesc'] = "Here you can define the ticket statuses that you wish to have available in support tickets. The 4 default statuses Open, Answered, Customer-Reply and Closed cannot be deleted or renamed.";

Link to comment
Share on other sites

Yes I am aware of that, and with later releases you can change the Closed status to display something else, but you MUST keep that status. I am not sure what this means above.... in the customer lang, we have done this:

 

$_LANG['supportticketsstatusanswered'] = "Answered";

$_LANG['supportticketsstatusclosed'] = "Resolved";

 

As you can see, we left Answered alone, but changed the closed to Resolved, which is fine and shows fine in the customer, but how would I display Resolved instead of Closed in the admin?

Link to comment
Share on other sites

sorry to quote it again, but...

 

The 4 default statuses Open, Answered, Customer-Reply and Closed cannot be deleted or renamed.";

these exact status terms are hard-coded into WHMCS, so you can't change them on the admin side - you can only change how the customer sees them (in the customer language files).

 

about the only thing you would be able to do would be with support tickets in the admin area is to edit the dropdown text when viewing a ticket... e.g., supporttickets.php?action=view&id=5

 

there's a dropdown list - "Open, Answered, Customer-Reply, On Hold, In Progress and Closed"

 

if you edit admin/templates/blend/viewticket.tpl, you could replace...

 

{$statusitem.title}

with..

 

{$statusitem.title|replace:'Closed':'Resolved'}

that would rename "Closed" in the dropdown - but you will still see "Closed" used elsewhere in the ticket area...

 

most of the admin side is encrypted, so there's a limit to how much you can change.

Edited by brian!
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated