Topic: Disable thread topic showing at the top of every post?

This seems a really redundant addition to 1.4.3 and it would be great to be able to turn it off... it ends up gunking up threads pretty bad:

http://i.imgur.com/NRhcHLx.png

Multiplied by however many posts are on the page, this ends up taking up a lot of screen real estate and doesn't add anything.

Can we get a patch to turn it off?

Re: Disable thread topic showing at the top of every post?

Try this Header In Each Message.

3 (edited by tubesockfan 2015-09-07 21:49)

Re: Disable thread topic showing at the top of every post?

PanBB.Ru wrote:

Try this Header In Each Message.

Sorry, I don't speak Russian, and from what I can tell with google translate this doesn't seem to let you choose not to display the thread title at the top of each post? But rather lets you put a custom topic for each post. Which I am not interested in doing.

If there's a way to do it, I'd really appreciate your help.

4 (edited by abdulhalim 2015-09-08 15:23)

Re: Disable thread topic showing at the top of every post?

Do you want to disable post headers ( Topic and RE: ) ?

just go to style\Oxygen\Oxygen.min.css

go to line : 2629
find out : 

.post-entry .entry-title{
    text-indent: 0;
    visibility: visible;
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: bold;
    position: static;    
}

add Display:none ; 

like this

.post-entry .entry-title{
    text-indent: 0;
    visibility: visible;
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: bold;
    position: static;
    display:none;
}

Just like this , but PanBB.RU wrote a great plugin for this

Thank You PanBB.Ru smile

Get Persian PunBB @ www.getpunbb.ir

Re: Disable thread topic showing at the top of every post?

abdulhalim is right ,it is so easy

Re: Disable thread topic showing at the top of every post?

Is there I way to modify the PHP so that I can take the 'RE:' out and just leave the title?

It makes a significant difference when working with RSS exports.

Re: Disable thread topic showing at the top of every post?

Solved, it's in the language file for topics.

Re: Disable thread topic showing at the top of every post?

abdulhalim wrote:

Do you want to disable post headers ( Topic and RE: ) ?

just go to style\Oxygen\Oxygen.min.css

go to line : 2629
find out : 

.post-entry .entry-title{
    text-indent: 0;
    visibility: visible;
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: bold;
    position: static;    
}

add Display:none ; 

like this

.post-entry .entry-title{
    text-indent: 0;
    visibility: visible;
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: bold;
    position: static;
    display:none;
}

Just like this , but PanBB.RU wrote a great plugin for this

Thank You PanBB.Ru smile


Works, except it removes the title from the first post too, it would need to stay there.

The extension everyone is talking about seems to be a dead link so I tried the edit above but to completely remove the titel is not an option.

Re: Disable thread topic showing at the top of every post?

try

.post:not(.firstpost) h4.entry-title {
    display: none;
}
ForkBB
I speak only Russian  :P

Re: Disable thread topic showing at the top of every post?

Visman wrote:

try

.post:not(.firstpost) h4.entry-title {
    display: none;
}

Of course, good old fashioned css when nothing else works.

Thank you for the piece of code, it takes care of seeing that title repeat again and again.