Jump to content

Recommended Posts

Posted

I was just browsing the front end and found out the support manager doesn't have any page titles minus the company name.

 

So it shows up as Company Name and not for example: Support Manager | Company Name or Support Departments | Company Name.

Just a small request to see if it improves it.

  • 7 months later...
Posted

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";
  • 1 month later...
Posted

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 ";

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...