Loading...
 
Skip to main content

Features / Usability


Omit Title from Select Wiki Pages

posts: 30

I like having a wiki page's title automatically placed at the top of the page as the header. BUT, is there way to disable that feature for a particular page? I'm thinking only about the Home Page. I don't need it to say "Home Page". The page can work just fine as the home page with be titled as such.

Thanks!

posts: 4673 Japan

Hi Animal,

I've thought for a long time that turning off the page title for HomePage should be an option, but nobody's gotten around to coding that yet.

In the meantime, you can use a CSS rule to do it. In the Look and Feel admin page's "customization" tab, in the textarea for custom CSS, add

#page_1 h1.pagetitle {display: none;}


On every wiki page, the body element gets an id assigned. You can check in the page source to confirm the id number.

-- Gary


posts: 30

Gary -

Got to check this out yesterday and it's perfect! I can see where it would be a nice built-in feature — perhaps as a wiki page property. But really, your workaround is just fine. Really appreciate it.


posts: 72 United States

I've done this on my site by creating a category for pages where I don't want to display the title (89 in the example below), and using Customer HTML head content in Look & Feel (/tiki-admin.php?page=look).

Copy to clipboard
{if isset($objectCategoryIds) and in_array(89, $objectCategoryIds)} {literal}<style type="text/css"> .pagetitle {display:none;} </style> {/literal} {/if}

Now all I have to do is add a page to that category and no more title.