Replies
Hi Lee,
I am sorry to hear about that. There are things that needs to be done and BP is moving in that direction. I can understand the frustration but there are reasons for using separate member types. WordPress has roles, fixed roles system and it is not easy create/manage new roles due to all the capability system.BuddyPress member types are not for capability, the only purpose it serves is identifying different type of user. I hope you understand the difference between the two. Also, It is a very lightweight system. Another reason to introduce the member type instead of using roles can be thought as a way to support multisite. On Multisite, roles are site specific and will not suit the requirement of BuddyPress.
There are things that needs to be improved and the BuddyPress team have been generously improving it. We have to remember that BuddyPress is a non profit project and everyone donating time there are doing it for free. So, I respect it.
Hopefully, With the BP Development gaining more pace, you won’t have complains in future 🙂
- Brajesh Singh on June 17, 2016 at 10:50 pm in reply to: [Resolved] BP Profile Visibility Manager #4301
Thank you Tom 🙂
- Brajesh Singh on June 17, 2016 at 10:50 pm in reply to: [Resolved] Required fields and Conditional Profile Fields for BuddyPress #4300
Hi Petra,
It is not an issue with Conditional Profile field. BuddyPress does not allow registration if all the required fields are not filled on Registration page.You will either need to move the partner field out of registration page(my moving to another field group) or make it non required. I am sorry for the trouble but it is the way how BuddyPress works. My advice is to avoid hiding required fields using conditional profile field.
Hope that helps.
Regards
Brajesh Hi Lee,
I can confirm that in 1.8. The problem is , The plugin assumes you have 2.0 or above. In 1.8, The $activity is not available as the 2nd parameter causing the problem.I am unable to think of a solution as we are heavily relaying on activity id which is not available in case of 1.8.
May be you should try 1.0 of Bp activity as wire instead.PS: If possible, I will suggest upgrading to BP 2.2(or 2.0) as a lot of things have come in these two versions.
- Brajesh Singh on June 16, 2016 at 6:44 pm in reply to: [Resolved] Show only post updates and comments using Buddypress Activity Shortcode #4287
Thank you Eric 🙂
- Brajesh Singh on June 16, 2016 at 6:31 pm in reply to: I want to make sign up process like facebook #4285
Hi Dhaval,
Welcome to Buddydev.Since I registered on Facebook in 2006-2007, I don’t remember the exact steps. I checked on the FB and see the the first screen is basic form.
So, My question to you:-
1. Does that screen come after completion of registration or is it part of registration steps?
2. is the user logged in when the form is shown?
3. Do you need help in creating multi step registration or importing etc?Thank you
Brajesh Hi Graeme,
Welcome to Buddydev forums 🙂Are you using BuddyPress clear notification plugin? If yes, you can create a function like this and use it anywhere
function buddydev_clear_notification_button() { if ( ! is_user_logged_in() ) { return ; } $user_id = bp_loggedin_user_id(); $notifications = bp_notifications_get_notifications_for_user( $user_id ); if ( ! $notifications ) { return ; } echo '<a id="clear-notifications" href="'.bp_core_get_user_domain( $user_id ).'?clear-all=true&_wpnonce=' . wp_create_nonce('clear-all-notifications-for-'. $user_id ).'"> [x] Clear All Notifications</a>'; }Here is an example to show how to inject it at the top in the notifications screen(It is not the right way, the notification template does not have a hook, so I suggest using the function in the template directly instead of hooking like below)
function buddydev_inject_clear_button() { if( ! bp_is_notifications_component() ) { return ; } buddydev_clear_notification_button(); } add_action( 'bp_before_member_body', 'buddydev_inject_clear_button' );Hope that helps.
Please do let me know how it goes?Regards
Brajesh- Brajesh Singh on June 16, 2016 at 6:16 pm in reply to: [Resolved] Add separate landing page as WordPress Front Page #4283This reply has been marked as private.
- Brajesh Singh on June 16, 2016 at 6:15 pm in reply to: [Resolved] Add separate landing page as WordPress Front Page #4282
Hi Dandy,
Thank yo.
I am glad it is working. - Brajesh Singh on June 16, 2016 at 6:14 pm in reply to: [Resolved] Display last name in profile pages #4281
Hi Javier,
Thank you for the update. Yes, you are right about it. Though it is possible to write a script that does it for the older registrations, It does not seem to be readily available.Marking the thread as resolved. Please do post a topic if you need any help in future 🙂