Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  •  Reflect Growth
    Participant

    Thanks Andrei, I did take a look but I think that may be specific to the plugin you mentioned. Unless I’m missing something?

    I’ve tried using the ‘bp_modify_page_title’ filter which works for changing the page title for Buddypress pages successfully. The same issue exists for bbPress pages, so I’m now hunting for a similar filter I can use for those pages too.

    COPY CODE
    /* BuddyPress & bbPress: Page Title fix */
    add_filter( 'bp_modify_page_title', 'my_page_title', 10); // Works for BP pages fine :)
    add_filter('bb_title', 'my_page_title'); // Doesn't work for BB pages :(
    function my_page_title( $title) {
        
        return $title.' Reflect Growth'; // TODO: Change to dynamic WP func call.
    }

    As an aside, I’m wondering if this issue cropped up when WordPress 4.1 introduced the theme support for page titles? Can’t substantiate that one though, just a little puzzled as I’m sure this was working fine.

    in reply to: Forums > Reply : Styling Issue #44752
     Reflect Growth
    Participant

    Looks like this fixes it:

    COPY CODE
    #bbpress-forums div.reply {
    height: auto;
    width: 100%;
    position: relative; /* Added */
    overflow: hidden; /* Added */
    }

    Can you see anything wrong with this?

    in reply to: Forums > Reply : Styling Issue #44751
     Reflect Growth
    Participant

    I did some initial investigation (using the inspector in chrome) and couldn’t see any styling / css conflicts so didn’t think the plugins would be playing a part.

    This seems to be the main style applied:

    COPY CODE
    #bbpress-forums div.bbp-reply-author .bbp-author-role.role-keymaster, #bbpress-forums div.bbp-reply-author .bbp-author-role.role-moderator {
    width: 120px;
    font-style: normal;
    font-size: 9px;
    font-weight: bold;
    position: absolute;
    z-index: 10;
    text-align: center;
    text-transform: uppercase;
    line-height: 26px;
    top: 12px;
    right: -34px;
    margin: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #00B9F7;
    color: #fff;
    }
Viewing 3 posts - 1 through 3 (of 3 total)

Log in with your credentials

Forgot your details?