Jump to content

[Support] Support Manager Page Titles


Michael

Recommended Posts

  • 7 months later...

I've managed to get this working on Licensecart via the set vars Tyson gave to Naja7host:

 

Inside: plugins/support_manager/support_manager_controller.php

 

Add:

$this->structure->set("page_title", "Support");

Under:

		// Override default view directory
		$this->view->view = "default";
		$this->orig_structure_view = $this->structure->view;
		$this->structure->view = "default";
Link to comment
Share on other sites

  • 1 month later...

i have forget about this thread .

Micke your solution will add a unique title for all the support manager pages . take this one , and every page has it own titles .

 

in client_tickets.php  controller under this line :

$this->set("string", $this->DataStructure->create("string"));

add :

$page_title = Language::_("ClientTickets." . Loader::fromCamelCase($this->action ? $this->action : "index") . ".page_title", true);
$this->structure->set("page_title", $page_title);

now every page has it own title .

 

also is better to add a new phrase language in clients_tickets

$lang['ClientTickets.departments.page_title'] = "Support Manager > Select Departement ";
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.

Loading...
×
×
  • Create New...