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

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...