This is not tested, but you could use custom CSS:
#bbpress-forums p.bbp-topic-meta {
display:none;
}
I think that would effectively hide the whole little section of information.
Okay, thanks π
Are there any other suggestions π ?
The best way would be to amend the loop-single-topic template
so if you wanted to amend loop-single-topic you would do the following
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-topic.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-topic.php
bbPress will now use this template instead of the original
and you can amend this
then you can amend line 60 to take this out
Hi Robin π
Thank you for your reply. I guess you are the same Robin W that is active at “bbpress.org”. So, to begin with, thank you very much for being so helpfull regarding bbpress in general π
Regarding your answer, which is really helpfull, would it be best to do it in a Child Theme perhaps π ?
yes, always in a child theme is best
Alright. Thanks Robin π