• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Hide Board title on index page

Allan

Well-known member

Attachments

  • titre_après.webp
    titre_après.webp
    12.8 KB · Views: 479
  • titre_avant.webp
    titre_avant.webp
    13.3 KB · Views: 443
You can also do the same thing by editing forum_list from:

Code:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>

To:
Code:
<xen:h1></xen:h1>
paul,
Why don't we remove them all. what's the reason to leave the empty <xen:h1> tag
 
Removing the tags altogether will actually result in the title appearing again.

You need to have empty tags to stop it showing.
 
You only need to revert if the template is outdated.

Not all templates are changed between releases.
 
I dont like removing a H1 like the forum title for SEO reasons.
So in forum_list I hid the title by changing the font color to the default background color like so

Code:
<xen:h1><FONT COLOR="fcfcff">{$xenOptions.boardTitle}</font></xen:h1>
 
I would suggest this to be optional in admin prefs, since it's hardly necessary to have the board title both in the browser window, header (logo) and above the forum index.
 
I dont like removing a H1 like the forum title for SEO reasons.
So in forum_list I hid the title by changing the font color to the default background color like so

Code:
<xen:h1><FONT COLOR="fcfcff">{$xenOptions.boardTitle}</font></xen:h1>

It's penalized by Google (cloaking) so I don't recommend it.
 
Maybe it will hurt your position in Google a little and you won't notice. I wouldn't do it, anyway I also want to remove that h1 and make the logo image.

I'm going to try to modify the template and then I'll post it here.
 
Nothing but upward motion in google rankings for me, which actually surprises me as I thought that I would need a more established forum to see this much love from google (might put this down to good forum software :))
 
Thanks for this. I knew I had seen it somewhere but couldn't find it last night but now have it in my sights and done.

Your time and effort is greatly appreciated.
 
Top Bottom