Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    the BuddyBoss team claims that their platform is compatible with BP, but to be honest i never tested the BuddyPress Integration with BuddyBoss so i cannot really tell for sure.

    That being said i can create for you a trial license so you can test it on your site? If you are interested please send me a message via the contact form at https://wpadverts.com/contact/

    Thread Starter luisthegeek

    (@luisthegeek)

    Thanks. Sending email now.

    Hello, does it work with BuddyBoss Platform/Theme?

    Best regards

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    as far as i remember there was one main issue only, but it was caused by AdBlock installed in the browser and to fix it you just need to add the code below in the theme functions.php file

    
    add_filter( "body_class", "my_body_class" );
    function my_body_class( $classes ) {
        if(($key = array_search("adverts", $classes)) !== false) {
            unset($classes[$key]);
        }
        return $classes;
    }
    

    A similar snippet will be added to the next BP release so it will not be needed in a future.

    thx

    Hello Greg, I am currently looking into BuddyBoss plugin too but still on the fence right now since I am still skeptical regarding its stability and compatibility. And I stumbled on this thread when I was doing the research.

    Any chance you can hook me up with a trial license for BuddyBoss too?

    I will send an email to the WPadvert contact too.

    Thanks!

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    sure, you should receive a trial version download link via email soon.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Compatability with Buddyboss Platform Plugin’ is closed to new replies.