Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: How to remove following tab #46484

    Hi Tosin,
    You may use the following css

    
    #activity-follow{  display:none;}
    

    If that does not work(may happen for some theme) you will need to ad the !important flag to enforce it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Quint,
    Thank you for bringing it.

    The problem is there is no standard consistent way specified.

    Some of the field types in core have it as you have specified and some have it differently.

    1. After Input fields
    https://github.com/buddypress/buddypress/blob/master/src/bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php

    2. before input fields
    https://github.com/buddypress/buddypress/blob/master/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php

    There are many field types with this inconsistency, so we don’t have a standard here.

    I am willing to change as you have suggested but I am worried about its ipact on the existing installs.
    Do you have suggestions to deal with that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Branded login 403 forbidden error #46482

    Please share the shortcode being used for login.
    Also, are you using another plugin/code to allow login from any page as Branded login only works for the assigned login page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Cristi,
    Thank you for the patience.

    Please put this in your theme’s functions.php or (wp-content/plugins/bp-custom.php)

    
    
    add_filter( 'bblpro_disable_author_media_listing', '__return_true' );
    
    

    When we release BuddyBlog Pro 1.3.0, the plugin will not list any media to the author other than what they upload on the current post if this filter is enabled.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Carsten,
    Thank you. If you are using Nouveau, then there are 2 way to do it.

    1. Using hooks( to use output buffer an discard but it is not reliable for future changes)
    2. Editing template file, we are going to use it.

    Please copy wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/home.php to your-child-theme/buddypress/members/single/home.php

    Now, Please look for these lines at the top

    
        <div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers">
    
    		<?php bp_nouveau_member_header_template_part(); ?>
    
        </div><!-- #item-header -->
    
    

    and change it to

    
    <?php if ( ! in_array( bp_current_component(), array( 'activity', 'notifications', 'messages', 'settings' ) ) ) : ?>
        <div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers">
    
    		<?php bp_nouveau_member_header_template_part(); ?>
    
        </div><!-- #item-header -->
    <?php endif; ?>
    
    

    Please feel free to update the slug list with any component you want to hide.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: The BP Menus PERSONAL MENTIONS FAVOURITES FRIENDS GROUPS #46468

    Hi Daniel,

    Thank you for the reply.

    That would be very strange if the plugin did that. I will check the code and get back to you in couple of hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Posting in groups #46467
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Issue to download premium plugins…. #46466

    Hi,
    Welcome back.

    You have an active subscription and you should be able to download all plugins from your subscriptions.

    Since BuddyBoss keeps adding/removing certain features, we do add/remove some plugins from that specific package(BuddyBoss Max) to make sure the plugins remain useful.

    It seems we have dropped the support for BuddyBoss in these 2 plugins(and addition Editable Activity plugin) as BuddyBoss added their own similar features in BuddyBoss Platform Pro.

    If you still need to use it, please reply here and I will share the links to download it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Change Default Activity Stream Tab #46465

    Hi John,
    Welcome to Buddydev support forums. Are you using Legacy template pack? The above code was for legacy template pack.

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] QUESTION #46464

    Hi Tosin,
    I am glad you found it.

    If you ever find anything like this again, the cause is always some caching or cache busting plugin.

    Regards
    Brajesh