• Resolved pare81

    (@pare81)


    Hi Greg,

    By using BP extension there is an error message after posting an AD if the activity stream for buddypress is deactivated. Don’t like use the stream options, only use BP as Profile page.

    Thanks and regards
    Pare

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

    (@gwin)

    This will be fixed in next BP Integration release, in the meantime you can add following code to your theme functions.php file it should disable adding activity

    
    add_action( "init", "disable_wpadverts_bp_activity", 1000 );
    function disable_wpadverts_bp_activity() {
        remove_action( 'publish_advert', 'adext_bp_activity_add' );
    }
    
    Thread Starter pare81

    (@pare81)

    Works Greg, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘BP Bug after ad posting if activity is deactivated’ is closed to new replies.