Author Topic: Remove double :: from title bar?  (Read 3237 times)

Offline jaredyeo

  • Jr. Member
  • **
  • Posts: 10
Remove double :: from title bar?
« on: April 01, 2009, 04:44:43 AM »
Hello which file exactly stores the "::" string in the title bar? Can i change it to a "-" instead?

Offline Julius Caesar

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 498
    • http://www.de-keizer.net/
Remove double :: from title bar?
« Reply #1 on: April 01, 2009, 05:08:27 AM »
In the file ./program/include/rcube_json_output.php

Search for 'product_name' and edit the function:

    public function set_pagetitle($title)
    {
        
$name $this->config->get('product_name');
        
$this->command('set_pagetitle'JQ(empty($name) ? $title $name.' :: '.$title));
    }
Julius Caesar

You can download the Groupvice4 theme here.
Sie können Groupvice4 hier he

Offline jaredyeo

  • Jr. Member
  • **
  • Posts: 10
Remove double :: from title bar?
« Reply #2 on: April 01, 2009, 05:37:46 AM »
Quote from: Julius Caesar;18168
In the file ./program/include/rcube_json_output.php

Search for 'product_name' and edit the function:

    public function set_pagetitle($title)
    {
        
$name $this->config->get('product_name');
        
$this->command('set_pagetitle'JQ(empty($name) ? $title $name.' :: '.$title));
    }

Beautiful. Thanks.

edit: hmm doesnt seem to work :(
« Last Edit: April 01, 2009, 05:45:30 AM by jaredyeo »

Offline Julius Caesar

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 498
    • http://www.de-keizer.net/
Remove double :: from title bar?
« Reply #3 on: April 01, 2009, 06:41:38 AM »
Quote from: jaredyeo;18172
edit: hmm doesnt seem to work :(

There is also another file:

./program/include/rcube_template.php

Search for
Code: [Select]
' :: ' and replace this with
Code: [Select]
' - ' as well.

And the template for composing messages uses it's own title string: ./skins/default/templates/compose.html
« Last Edit: April 01, 2009, 06:46:17 AM by Julius Caesar »
Julius Caesar

You can download the Groupvice4 theme here.
Sie können Groupvice4 hier he

Offline jaredyeo

  • Jr. Member
  • **
  • Posts: 10
Remove double :: from title bar?
« Reply #4 on: April 01, 2009, 09:06:53 AM »
Quote from: Julius Caesar;18174
There is also another file:

./program/include/rcube_template.php

Search for
Code: [Select]
' :: ' and replace this with
Code: [Select]
' - ' as well.

And the template for composing messages uses it's own title string: ./skins/default/templates/compose.html


Thank you Julius that's very helpful. Cheers.