Tagged: profile completion
Hi there, I was hoping to hear if there was any feedback on this:
https://wordpress.org/support/topic/does-not-always-refresh-after-save-to-show-updates/#post-17266571
I couldn’t find a page at this site to write the message on about it so I wrote it on the WordPress support page. Kind thanks.Hi Kir,
My apologies for the delayed reply.
It seems the issue is not directly related to this plugin.Can you please re-check.
Thank you
BrajeshHi there, ok I will take another look and come back, thank you.
Another important point, during registration and profile completion, we have some additional pages we ask users to refer to during sign up to check that their profile info is a fit, but of course when they click these links they are now unable to access those pages.
How can I white list some pages is there a function I could use with some page ids?
I think it would be a great idea to make it possible to pick some pages in settings that are whitelisted from the plugin, or add some page ids or uris or similar, and then these pages are always accessible even when the profile has not been completed yet? But any other pages or posts etc that have not been selected are treated ‘as is’ and you cannot visit those you will be redirected back to the profile edit screen?
Kind regards
Hello Kir,
Please try the following code to skip the profile completion check:
add_filter( 'bp_force_profile_completion_skip_check', function ( $skip ) { // Skip for the following pages with IDs 34 and 65. if ( is_page( 34 ) || is_page( 65 ) ) { $skip = true; } return $skip; } );
Please replace page IDs with yours and let me know if it works.
Regards
Ravi
You must be logged in to reply to this topic.