Indexhibit

Login:

Created by:
Daniel Eatock &
Jeffery Vaska

Built with Indexhibit

Remove "Main : " from title tag

 

Indexhibit version: 2.0
Thread is not resolved.

bipster
SPAIN
8 month(s) ago
Permalink Post

Hi!

Just a question. Is it possible to remove the "Main : " string from the <title> tag in the main page?

Thanks in advance

Vaska A
UNITED STATES
8 month(s) ago
Permalink Post

You would need to edit that out of the template directly - certainly not difficult. ;)

bipster
SPAIN
8 month(s) ago
Permalink Post

But, if I strip the <last:ndxz_title /&gt tag from the template, the title in the rest of the sections disappear, too. Am I wrong?

Vaska A
UNITED STATES
8 month(s) ago
Permalink Post

Only the main, page, aha...

You would need to make a small custom plugin that checked it it was the main page (home = 1) and then dealt with things accordingly.

bipster
SPAIN
8 month(s) ago
Permalink Post

I'll try your suggestion. Thanks!

bipster
SPAIN
8 month(s) ago
Permalink Post

I tried this in my template with no success:

  1. global $rs;
  2. if ($rs['id'] == 1) {
  3.     ....
  4. }

What am I doing wrong?

bipster
SPAIN
8 month(s) ago
Permalink Post

Ok, I managed to build a plugin

  1. function ndxz_title_plus()
  2. {
  3.   $OBJ =& get_instance();

if ($OBJ->vars->exhibit['home'] != 1) {
return ($OBJ->vars->exhibit['section_top'] == 1) ?
         strip_tags($OBJ->vars->exhibit['sec_desc']) :
         strip_tags($OBJ->vars->exhibit['title']);
}
}

Showing 1 - 7 of 7 posts in Forum » Customize » Remove "Main : " from title tag
 

You need to be logged in to post.