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: 25360
    Brajesh Singh on in reply to: [Resolved] RSS button on activity page #33152

    Hi Carsten,
    Thank you for the question.

    I am glad you are able to hide it.

    The reason for its existence is to provide a feed of activities. It is from the beginning days of BuddyPress when news feed reader was still popular. It provided a way for people to subscribe to the feed(new activities).

    I believe it has lost its purpose now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360
    Brajesh Singh on in reply to: Buddyblog Pro – Beta Version #33143

    Hi Bruno,
    I am sorry, I do not have the update ready.

    This is in the queue as 2nd priority for release. Please allow me a bit more time on this. We will release it in next 10 working days(another 2-3 days before I can restart work on it).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360

    Hi,
    You were correct. I found that the issue was with site title.

    It is fixed now. Please upgrade to 1.4.5 and it will work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360

    Hi Kritan,
    Thank you for using the plugin.

    I am looking at it. Please allow me a say to thin about the best way to proceed.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25360
    Brajesh Singh on in reply to: BuddyDev plugins not updating with BuddyDev Dashboard #33135

    Hi Eric,

    Thank you for the topic.

    I looked at your account and I can see the issue.

    currently, you have valid license(for receiving updates) for only 2 plugins:-
    – BuddyPress Moderation tools
    – BuddyPress Friendship Restrictions

    Access for all other premium plugins have expired. you are most probably using some of our free plugins which will receive update irrespective of the license status.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360
    Brajesh Singh on in reply to: Not Able to Comment on group post #33127

    Hi Ankit,
    Since this is not the default behaviour, I am assuming you are using code or plugin to achieve that.

    I will suggest to ask the source of your custom code/plugin for the same.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360
    Brajesh Singh on in reply to: Issues With BuddyBlog and also with Moderation Tools #33122

    Hi Eric,
    Thank you for the reply.

    Please open a new topic to help us keep the discussion focused around the issues you are facing. I will assist you there.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360

    Hi Tosin,
    I could not remember that. If they worked earlier, It will continue to work. we haven’t changed anything in recent times that may break it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25360

    Hi,
    It seems your problem is user is not marked as part of the sub site.

    In our case, we add a record(create a log that user belongs to this sub site) when a user is added to the sub site.

    Here is the list of actions when we record the user as part of current site’s member directory.
    https://github.com/sbrajesh/buddypress-multi-network/blob/master/core/class-bp-multi-network-actions.php#L30

    Here is it in plain English(if the above code does not make sense):-
    1. When a user activates their account on a sub site, we add them to the sub site.
    2. When a user is added to the sub site

    Since you are using WooCommerce, these actions may not be firing.

    Adding this code to your bp-custom.php

    
    add_action( 'user_register', function ( $user_id ) {
    	if ( function_exists( 'mnetwork_add_user' ) ) {
    		mnetwork_add_user( $user_id, get_current_blog_id() );
    	}
    } );
    
    

    May do the trick. Try registering a new user after putting it. Do they appear if they register on the sub site and login there.

    Regards
    Brajesh