Replies
- Brajesh Singh on September 10, 2020 at 7:26 pm 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 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- Brajesh Singh on September 9, 2020 at 9:52 pm in reply to: I want to edit the page title in the BuddyPress Branded Login #33142
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 - Brajesh Singh on September 9, 2020 at 6:03 pm in reply to: Email Message Received Problem Register Confirm Message & Reset Password #33138
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 - Brajesh Singh on September 9, 2020 at 6:01 pm in reply to: [Resolved] BuddyPress Multi Network issue BuddyBoss Profile Fields Updation #33136
You are welcome 🙂
- Brajesh Singh on September 9, 2020 at 6:01 pm 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 RestrictionsAccess 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 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- Brajesh Singh on September 8, 2020 at 10:32 pm 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 - Brajesh Singh on September 8, 2020 at 7:10 pm in reply to: Branded login and Limit Login Attempts Reloaded plugin #33118
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 - Brajesh Singh on September 8, 2020 at 6:48 pm in reply to: [Resolved] BuddyPress Multi Network issue BuddyBoss Profile Fields Updation #33116
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#L30Here 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 siteSince 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