Skip to:
Content
Pages
Categories
Search
Top
Bottom

Adding forum posts to activity stream…


  • dugfunny
    Participant

    @dugfunny

    Using this code I have made it to where only updates and rtmedia posts show up on my activity stream

    /**
     * Activity Stream Default Updates
     */
    function make_swa_show_notice_only( $retval ) {	
    	
    	 if ( bp_is_page( 'activity' ) ) {
    		$retval['action'] = 'activity_update, rtmedia_update';					
    	 }
    	
    	return $retval;
    	
    }
    
    add_filter( 'bp_after_has_activities_parse_args', 'make_swa_show_notice_only' );

    I would like bbpress forum posts to show up on my wall as well. What would i put next to

    ‘activity_update, rtmedia_update’

    in my code to make that happen? Thanks!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar