Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

  • Eyal
    Member

    @riotdezigner

    that is true, buddypress is free same as most of plugins out there. and after being around wordpress for a while i truly believe that it should stop. Nobody should work for free. i believe that a decent price for a great plugin like Buddypress will not prevent people from using it. as well as many other great plugins out there that are free and disappear after one or two updated of wordpress because not enough support. then we have to spend crazy amount of time to look for a replacement for those plugins. (i am dealing with this everyday).
    i personally appreciate you people giving your time to create such great things. and i would help in any way i can. :))))))


    Eyal
    Member

    @riotdezigner

    Great Functions!!! i have been looking for it. only thing i am trying to do now is to use the function only when under friends activity. so in groups activity and Favorites “no filter” will be normal.
    i was trying something like that :

    function blog_posts_by_default( $query_string ) {
    global $bp;
    if ( !$query_string )
    $query_string = ”;

    if ( ($bp->current_component == BP_ACTIVITY_SLUG . ‘/’ . BP_FRIENDS_SLUG . ‘/’ || !$bp->current_component) ) {
    if ( strpos( $query_string, ‘action’ ) == 0 )
    $query_string .= ‘&action=activity_update,new_member&scope=groups,friends,profile’;
    }

    return $query_string;
    }
    add_filter( ‘bp_dtheme_ajax_querystring’, ‘blog_posts_by_default’ );

    and i tried many other ways but all gave the same results.

Viewing 2 replies - 1 through 2 (of 2 total)
Skip to toolbar