Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Mathieu Viet

    (@imath)

    Hi
    I need more infos :

    – BuddyPress version ?
    – is it appearing in a group forum (bbPress 1.2) ?
    – is it appearing in a site wide forum (bbPress 2.2.3) ?
    – do you have both type of bbPress activated (1.2 for groups and 2.2.3 for sitewide ) ?
    – is it a multisite config ?
    – what is the top bar (wp admin bar or buddy bar) ?
    – do you have an url where i can see the trouble or an image ?

    Thread Starter thientu83

    (@thientu83)

    hi imath,
    i am using buddypress 1.6.3, wordpress 3.5, no multisie..

    Here is the link to the problem: link

    it locates on the top left, just above the header..

    Thanks

    Plugin Author Mathieu Viet

    (@imath)

    It’s definately due to a plugin calling the function get_the_title(). I presume Jetpack in order to add the opengraph datas. I need to search deeper.

    Meanwhile you can use this css trick to solve your problem :

    <style>
    body.single-topic .bbp-st-topic-support{
        display:none;
    }
    body.single-topic h2 .bbp-st-topic-support{
        display:inline!important;
    }
    </style>

    Thanks for your feedback.

    Plugin Author Mathieu Viet

    (@imath)

    Ok i got it, i just need to hook wp_head later i think. Please, can you test this instead my previous reply and send me a feedback about it :

    Edit file :
    /plugins/buddy-bbpress-support-topic/includes/bp-bbp-st-bbpress.php
    at line 36 in order to fix a latest priority for instance 99.
    so replace :
    add_action( 'wp_head', 'bp_bbp_st_filter_topic_title' );

    by :
    add_action( 'wp_head', 'bp_bbp_st_filter_topic_title', 99 );

    It should fix the problem, if so i’ll integrate this fix to next version.

    Thread Starter thientu83

    (@thientu83)

    Imath,
    You are the master my friend…It worked! u rock!

    thanks a million

    Plugin Author Mathieu Viet

    (@imath)

    your welcome ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Support request] shows up above header’ is closed to new replies.