BuddyDev

Search

BUddypress Profile Completion

  • Participant
    Level: Enlightened
    Posts: 35
    Kir on #51069

    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.

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2948
    Ravi on #51071

    Hello Kir,

    Sorry for the inconvenience. I will check it and will update you soon.

    Regards
    Ravi

  • Keymaster
    (BuddyDev Team)
    Posts: 24238
    Brajesh Singh on #51097

    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
    Brajesh

  • Participant
    Level: Enlightened
    Posts: 35
    Kir on #51272

    Hi 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2948
    Ravi on #51280

    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.

This topic is: not resolved