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: 25485

    Hi Kuni,
    Thank you for the update.

    I am sorry but due to use of the custom code, you won’t be able to use theme template.

    The theme template uses bp_has_members() and that will be affected by the custom code used to modify members loop.

    The default is working, because it does not uses bp_has_members() loop.

    At the moment, since the filter bp_after_has_members_parse_args is not aware of the context, we are unable to filter it for one loop and not for another.

    Please use the default listing to keep it working.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Kuni,
    I have tested it and it is working.

    There was a bug when no members had uploaded avatar, It was showing a db error(due to BP_User_Query not understanding the empty array).
    I have fixed that too.

    It is possible that a plugin filtering on bp_after_has_members_parse_args or bp user query can cause this. Please check.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Remove activity tab menu counter #21325

    Hi Tosin,
    Please change this

    
    <li class="selected" id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'My personal activities and the activities of members you are following on this site.', 'klein' ); ?>"><?php printf( __( 'News Feed <span>%s</span>', 'klein' ), bp_get_total_member_count() ); ?></a></li>
    

    to

    
    <li class="selected" id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'My personal activities and the activities of members you are following on this site.', 'klein' ); ?>"><?php _e( 'News Feed', 'klein' ); ?></a></li>
    

    That should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Dale,
    yes, you will need this plugin in that case.

    BuddyPress does not do it on their own. BuddyPress only allows you to notify all members if you update group title/description etc.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Dale,
    Thank you for asking.

    It depends on your need. BuddyPress allows you to notify changes in group to all members but it does not allow you to notify users on new group activities.

    If you need to notify users on all group activity, you will need this plugin. Otherwise, you won’t.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Barry,
    That seems very strange.

    Can you please tell me if BuddyPress shows you other notifications?
    This is the line(standard buddypress template notices).

    
    <?php do_action( 'template_notices' ); ?>
    

    That is used to print template notices, if possible, Can you please put temporarily somewhere in your template and check.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Remove activity tab menu counter #21318

    Hi Tosin,
    That is coming from yourtheme/buddypress/activity/index.php. If the file is not present, It is coming from the buddypress template pack(same file structure).

    There arr tw o options to hide it.Using css or modifying your template file. Please let me know if template file si present in your theme(also, which BuddyPress template pack are you using?)

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Joss,
    Thank you for the question.

    1. Showing PMPro level, it is doable.
    2. Listing users from 2 member types in one directory:- BuddyPress member types directory does not allow it. You can use our shortcode to achieve this though.

    For 1, I will look test install for PMPro a bit late today and post the code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Kristian,
    I am sorry, It seems you are mixing it with something else.
    The code is only affecting the arguements for activity loop. There is no way it can affect your login unless there is something else wrong. It can not create the login related bug, I can assure you about that.

    About the code not working:- The only reason is may not work is either you are not looking at activity loop via bp_has_activities() or something else is modifying the activities.

    The above code will exclude a users’s activity from sitewide activity page as well as other places where bp_has_activities() has been used.

    There is a possibility that a plugin like BuddyPress wall, Facebook Like Activity Stream, activity privacy or RT media activity privacy can change this behaviour. These plugins modify the activity clause and that could cause it to not work.

    Please check if you have any of these.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    This reply has been marked as private.