• Resolved stoffer_dev

    (@stoffer_dev)


    Hi, thanks for a great plugin πŸ™‚

    Is it possible to remove “Started by: <user>” under all Topics?

    Best regards
    Christopher

Viewing 7 replies - 1 through 7 (of 7 total)
  • 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.

    Thread Starter stoffer_dev

    (@stoffer_dev)

    Okay, thanks πŸ™‚
    Are there any other suggestions πŸ™‚ ?

    Plugin Author Robin W

    (@robin-w)

    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

    Thread Starter stoffer_dev

    (@stoffer_dev)

    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 πŸ™‚ ?

    Plugin Author Robin W

    (@robin-w)

    yes, always in a child theme is best

    Thread Starter stoffer_dev

    (@stoffer_dev)

    Alright. Thanks Robin πŸ™‚

    Plugin Author Robin W

    (@robin-w)

    πŸ™‚

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Remove “Started by: ” from Topic’ is closed to new replies.