Recent Topics

1 Feb 03, 2006 00:41    

I don't want the header to always be present on pages... In my particular case, I'd like to surpress the "Post details:" header, while allowing the rest of the headers to poke through.

Can this be acheived with skin modification? if no, i'd like to put in a request to have sucha feature. The old school method worked nicer for this.

2 Feb 03, 2006 15:27

Sure can. Open up the _main.php file for your skin and find this bit:

<h2><?php
        single_cat_title();
        single_month_title();
        single_post_title();
        arcdir_title();
        last_comments_title();
        profile_title();
?></h2>


Change it to this:

<h2><?php
        single_cat_title();
        single_month_title();
     // single_post_title();
        arcdir_title();
        last_comments_title();
        profile_title();
?></h2>

3 Feb 07, 2006 02:15

The method you suggest is only vaild for versions prior to 1.6-Alpha. Im running 1.6-Alpha.

Will this still officially work? I thought indiviual calls were deprecated?

Thanks for your help either way. I appreciate it :)

5 Feb 07, 2006 02:32

It is depreciated, but it still works. As far as I know, it's the cleanest way to not show the Post Details title.


Form is loading...