Replies
Gentle remeinder
What I basically want is to auto activate users and redirected to custom page after sign up with out logging in the new users
Hi have you been able to test the combination, I also use the BuddyPress Auto Activate Autologin plugin and activation redirection is set to [site_url]/account-created/ while login redirection is disabled.
ok thanks will this fork be coming any time soon
Another option to set daily maximum follow limit to 50 members and page redirects to (daily-follow-limit-reached) would be appreciated
- Tosin on March 27, 2021 at 12:52 pm in reply to: [Resolved] BuddyPress Friends Suggestions in member directory #37325
you can also add ability to change the tab text from (SUGGESTIONS) to either (FRIEND SUGGESTIONS) or (WHO TO FOLLOW)
- Tosin on March 27, 2021 at 11:55 am in reply to: [Resolved] BuddyPress Friends Suggestions in member directory #37324
The rule set I have in mind are
1.) a rule based on a user’s post count for either blog posts or custom post type (MOST IMPORTANT)
2.) a rule based on recent active members
3.) a rule based on mutual followers (that simply means suggestions based on other users who follow users similar to my own followers, this builds connections )
4.) a rule to suggest only users who have uploaded their profile photo
5.) a rule to only suggest verified accounts as priority using a plugin like https://wordpress.org/plugins/bp-verified-member/After adding option to make the suggestion tab the default selected tab, can you also add option to disable/remove the (all members tab) in members directory.
What are your thoughts
Any update sir
First of all I have this code below
// filter buddypress profile completion redirect url to a custom page. add_filter( 'buddypress_profile_completion_redirect', function ( $redirect_url ) { return get_permalink( 34168 ); } );
34168 = complete-profile page
function buddydev_skip_redirect_on_non_bp_pages( $skip ) { if ( ! is_buddypress() ) { $skip = true; } return $skip; } add_filter( 'bp_force_profile_completion_skip_check', 'buddydev_skip_redirect_on_non_bp_pages' );
function buddydev_redirect_to_news_feed() { if ( is_user_logged_in() && is_front_page() ) { bp_core_redirect( bp_get_activity_directory_permalink() ); exit( 0 ); } } add_action( 'template_redirect', 'buddydev_redirect_to_news_feed' );
Now when a new user register
1. All first login redirects should go to (welcome) page instead of (complete-profile) page. Currently, by default all first logins redirect to (complete-profile) page by BuddyPress Profile Completion plugin.
2. I want member types pro first login redirect to take priority to (welcome) page over the BuddyPress Profile Completion plugin
Honestly, I was thinking why you never created an all comprehensive buddypress redirection plugin. The plugin would handle the following settings
1. First login redirect for new users
2. Second login redirect for new users
3. Normal login and logout redirect for all users
4. Option to select redirect page for logged in users while trying to access the home page (see third code I sent)
5. Login and Logout redirect options based on member types.
6. Login and Logout redirect options based on roles.Now all your other plugin can work or integrate effectively with this redirect plugin.
PLUGINS LIKE
1. Branded login plugin
2. Member types pro plugin
3. Profile completion pluginWhat do you think?
- Tosin on March 24, 2021 at 10:09 am in reply to: [Resolved] Buddypress moderation button shortcode #37165
Gentle reminder sir