Replies
- Tosin on February 21, 2024 at 2:21 pm in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51735
Hello Ravi
Gentle reminder
Thanks
- Tosin on February 21, 2024 at 2:20 pm in reply to: Buddyblog Pro – add/remove visibility option #51734
Hello Brajesh
Please how is development on this alos, would you still consider the follow integration since buddypress devs are considering adding the follow plugin into buddypress core
Thanks
- Tosin on January 27, 2024 at 1:34 pm in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51552
This did not work.
I want all those codes enabled, they all work seamlessly when the feature (Override member avatar) is disabled in the member types pro plugin.
But when the (Override member avatar) feature is enabled new users are no longer forced to upload their profile picture
The Override is acting as if new users have already uploaded their profile photo mean while its meant to behave as if users have not uploaded their first pictures since they newly registered.
- Tosin on January 26, 2024 at 10:23 am in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51547
I using this filter to redirect users to force profile completion
// filter buddypress profile completion redirect url to the (complete-profile) page. add_filter( 'buddypress_profile_completion_redirect', function ( $redirect_url ) { return home_url( '/complete-profile/' ); } );
other codes im using are
// Do not redirect users on user profile and activity directory pages. function buddydev_skip_urls_on_loggedin_user_profile_and_activity_directory_page( $skip ) { if ( bp_is_my_profile() || bp_is_activity_directory() ) { $skip = true; } return $skip; } add_filter( 'bp_force_profile_completion_skip_check', 'buddydev_skip_urls_on_loggedin_user_profile_and_activity_directory_page' ); // Redirect users on members directory pages. function buddydev_skip_urls_on_members_directory( $skip ) { if ( bp_is_members_directory() ) { $skip = false; } return $skip; } add_filter( 'bp_force_profile_completion_skip_check', 'buddydev_skip_urls_on_members_directory' ); // Do not redirect users on non bp pages. 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' );
- Tosin on January 25, 2024 at 4:12 pm in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51535
I think there is misunderstanding from start.
My intention is to change the default mystery man avatar based on member type
I enabled the feature to associate custom avatar enabled in the (member types pro) plugin while the (buddypress profile completion) is enabled (user must have profile photo).
THE PROBLEM
Since the default mystery man avatar has been changed buddypress profile completion plugin is no longer forcing members to change their avatar - Tosin on January 17, 2024 at 1:46 pm in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51398
Hello Ravi,
Please note that this issue is not yet resolved, The custom member type photo is not displaying everywhere, it is only showing in the members directory its is not showing in activity and profile pages
Thanks
- Tosin on January 15, 2024 at 9:45 am in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51379
Thanks Ravi
I hope this can be resolved soonest as new members on my site arent uploading new profile photos
Regards
- Tosin on January 11, 2024 at 11:15 am in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51356
Hello Ravi
The code did not work, the code you provided removed the profile photos I set for the member types. I dont want the custom profile photos to be removed but I want the saved membertype profile photo to be compatible and work along side the buddypress profile completion plugin.
- Tosin on January 10, 2024 at 6:55 am in reply to: Buddypress Member types pro photo issue with buddypress profile completion #51335
Gentle reminder sir thanks
I really love this idea and its also been on my mind for long now, since I didnt know if this was possible I just decided to stick with the buddypress featured members plugin.
I would be awesome if there is an option to also make featured members sticky