This is a question you should ask the ‘topics for posts’ plugin author, not so much bbPress itself.
nevermind i got it , i assumed i could easily do it with css
after a couple of tries i eventually got it
li.bbp-header {
display: none;
}
hides the header on blog posts and forums
but when i add
.post li.bbp-header {
background: none repeat scroll 0% 0% transparent;
display:block;
}
the header is now just on forums and not on blog posts anymore
this also works on the li.bbp-footer
too
and probably anything else if you just use
display:none;
to hide the original css for blog posts
.post
to display it only on forum pages
when i put this code
li.bbp-header {
display: none;
}
it works all forum pages title not show up
but when i put the following code
.post li.bbp-header {
background: none repeat scroll 0% 0% transparent;
display:block;
}
it has nothing happen no change at all
how can i make just NO title on blog post only i want title on other pages.
thanks
@eddie01001
the li.bbp-header has nothing to do with page title.
this code from my topic would not work on page title.