BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 5
    Frogbutt on #43499

    Thanks works great, is there a way to get it to show the icons as well next to the items?

  • Participant
    Level: Initiated
    Posts: 5
    Frogbutt on #40757

    2nd the request for Buddyboss support

  • Participant
    Level: Initiated
    Posts: 5
    Frogbutt on #39448

    Thanks for clarification. On the code you provided, I am not looking to change the redirect URL, im looking for something similar to what was provided here :

    This code basically SKIPS the redirect all together on NON-Buddypress pages.

    Example 1:- Do not redirect on non BuddyPress pages

    /**
    * Do not redirect users on non bp pages.
    *
    * @param bool $skip should we skip or redirect.
    *
    * @return bool
    */
    function buddydev_skip_redirect_on_non_bp_pages( $skip ) {

    if ( ! is_buddypress() ) {
    $skip = true;
    }

    return $skip;
    }

    add_filter( ‘bp_force_profile_photo_skip’, ‘buddydev_skip_redirect_on_non_bp_pages’ );

    • This reply was modified 2 years, 9 months ago by Frogbutt.