Hi there,
I recognize that the topic title is not shown in a post - only in a comment... the same in your demo forum. Is it possible to change that? What can I do to display the title?

Cheers

Comments

Michelle’s picture

Status: Active » Fixed

Edit the template and remove the check for top post around the title.

Michelle

realOFF’s picture

Could you include an option to toggle this in your next release?
Thanks in advance!

Michelle’s picture

No, this is a very simple template mod. The module settings page is getting quite cluttered and it I'm not going to include options for every little tiny thing that can be done by theming. That's why we have theme overrides.

Michelle

Apfel007’s picture

HI OFFGames,

I did this in my page.tpl.php:

...
 <?php if ($title): ?> 
             <h1 class="title">
             <?php if ($node->type != forum) {print $title;} ?> 
             </h1> 
              
            <?php endif; ?>

Cheers

realOFF’s picture

Thanks both for your answers.
Wouldn't the suggested mod be overridden upon updating?

I'm too noob, sorry. :(

Michelle’s picture

No, because you copy .tpl files you want to modify to your theme and modify that version.

@Apfel007: Your code just leaves the title off the page if it's a forum node. That will leave you with no title at all if you don't change the AF template.

Michelle

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

jay.lee.bio’s picture

#4 helped me with a related issue. Thank you.