Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Jared Atchison

    (@jaredatch)

    The code needed will depend on your theme. What child theme are you using?

    The plugin attempts to remove the author boxes from its default placement, however if the child theme has relocated them, then the plugin won’t remove it by default.

    Once you know where the theme you are using is hooking the new author box at, you can remove it by using a snippet similar to http://wordpress.org/support/topic/breadcrumbs-showing-just-on-forums?replies=2#post-4596806

    Thread Starter Andrea Whitmer

    (@nutsandboltsmedia)

    I’m using the Jade child theme from Restored 316. For now I’ve removed the author box entirely – I’ve tried using the is_bbpress conditional with no luck. I’ll keep trying, though! Thanks for taking the time to respond.

    Thread Starter Andrea Whitmer

    (@nutsandboltsmedia)

    Oops, double posted somehow.

    Plugin Author Jared Atchison

    (@jaredatch)

    Sorry, I don’t have access to that theme so I can’t say for sure 🙂

    Thread Starter Andrea Whitmer

    (@nutsandboltsmedia)

    Still having this problem on a number of sites… I’ve been removing the author box entirely but that’s not an option for some of my clients. Every function I try either whitescreens the site or has no effect. The one giving me fits now is the News child theme.

    Thread Starter Andrea Whitmer

    (@nutsandboltsmedia)

    For anyone who runs into this issue, I have FINALLY found a solution thanks to some awesome people who were willing to help (including Jared, the plugin’s author).

    (Note that you’ll need a different hook on HTML5 child themes, and possibly a different one if your child moves the author box.)

    // Remove author box from forums
    add_action (‘genesis_after_post’, nabm_remove_author_box’ );
    function nabm_remove_author_box() {
        if ( is_bbpress() ) {
        remove_action( ‘genesis_after_post’, ‘genesis_do_author_box_single’ );
    }}

    That finally got the author box to go away. Hope that helps someone!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can't get rid of author box’ is closed to new replies.