-
Rimon Habib replied to the topic Specific management for specific user types in the forum How-to & Troubleshooting 8 years, 7 months ago
BuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
I am actually working on creating this plugin, which will be extension of my another plugin,…[Read more] -
Rimon Habib replied to the topic Different Profile Types with 2.2, Fields and Profile Pages in the forum Creating & Extending 8 years, 7 months ago
Just published an upgraded solution for this problem using BuddyPres Member Type API
Might be helpful for you,
http://rimonhabib.com/buddypress-member-type-manager/ -
Rimon Habib replied to the topic I want to hide View on BP activity for logged out users in the forum How-to & Troubleshooting 8 years, 7 months ago
you can redirect logged out users from activity page to home (or any page you prefer) using this function
function restrict_activity_page_from_logged_out_users(){
global $bp;
if( $bp->current_component === 'activity' && !is_user_logged_in() )
bp_core_redirect( site_url() ); // for home page; or use wp_login_url() to redirect to login…[Read more] -
Rimon Habib replied to the topic Restricting BuddyPress users from interacting with each other in the forum Creating & Extending 8 years, 7 months ago
BuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
I am actually working on creating this plugin, which will be extension of my another plugin, BuddyPress Member Type ManagerBy…[Read more]
-
Rimon Habib's profile was updated 9 years ago
-
Rimon Habib replied to the topic Login page in the forum How-to & Troubleshooting 9 years ago
If you want to redirect all users(admin,subscriber,all roles) to homepage after login, just use this line at your theme functions.php file
add_filter( 'login_redirect', create_function( '$url,$query,$user', 'return home_url();' ), 30, 3 );
Or if you filter a bit, like Admin users will redirected to dashboard, and all others to home page, you can…[Read more]
-
Rimon Habib replied to the topic Sending Form Data to Activity Stream in the forum How-to & Troubleshooting 9 years ago
hello @jrufitpro
I am planning to write a detail tutorial about use of bp_adtivity_add() function later today. I will update you with tutorial link. If i forget, please just remind me with a comment. -
Rimon Habib replied to the topic Registration process in the forum Requests & Feedback 9 years ago
If you want to redirect all users(admin,subscriber,all roles) to homepage after login, just use this line at your theme functions.php file
add_filter( 'login_redirect', create_function( '$url,$query,$user', 'return home_url();' ), 30, 3 );
Or if you filter a bit, like Admin users will redirected to dashboard, and all others to home page, you can…[Read more]
-
Rimon Habib replied to the topic Grid and List options Members and Groups in the forum Requests & Feedback 9 years ago
Frankly saying, This is something concern of theme, not plugin, as plugin developer won’t know theme structure and styling users are using, unless they use BuddPress default template parts. I did that thing actually in one of my other plugin, BuddyPress User Account Type, It wasn’t good as I said, Its theme dependent.
But It is a nice feature to…[Read more]
-
Rimon Habib replied to the forum topic Remove, disable the option to delete posts, (delete button) activity etc. for users of a certain lev in the group How-To and Troubleshooting 12 years, 2 months ago
Hi, you may try this,
wpbpshop.com/buddypress-user-account-type-pro -
Rimon Habib replied to the forum topic How to have a different profile page for different types of members? in the group How-To and Troubleshooting 12 years, 2 months ago
It seems this is the perfect solution for you
http://wpbpshop.com/buddypress-user-account-type-pro -
Rimon Habib joined the group How-To and Troubleshooting 12 years, 2 months ago
-
Rimon Habib joined the group Buddypress User Registration Auto Group 12 years, 6 months ago
@rimon_habib
Active 1 year, 11 months ago