BuddyDev

Search

[Resolved] Issue with profile photo (BuddyPress Profile Completion)

  • Participant
    Level: Enlightened
    Posts: 25
    imborx on #23004
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2908
    Ravi on #23020

    Hi,

    I am sorry but we can not have two different set of rules for users registered via two different methods. The best way will be to go with the minimum common requirement.

    I will suggest keeping the requirement to photo only to keep it working.

    Regards
    Ravi

  • Participant
    Level: Enlightened
    Posts: 25
    imborx on #23021

    Hi,

    So its posible to avoid the profile completion redirection? With a tweak or code modification. With that the issue will be solved, right?

    Thanks a lot!

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2908
    Ravi on #23022

    Hello,

    Please try the following code and let me know.

    
    function buddydev_skip_profile_completion_check( $skip ) {
    	if ( isset( $_GET['fb'] ) && 'registered' == $_GET['fb'] ) {
    		$skip = true;
    	}
    
    	return $skip;
    }
    add_filter( 'bp_force_profile_completion_skip_check', 'buddydev_skip_profile_completion_check' );
    
    

    Regards
    Ravi

  • Participant
    Level: Enlightened
    Posts: 25
    imborx on #23023
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2908
    Ravi on #23038

    Hello Imborx,

    We have made some changes to the plugin. Please update the plugin and let me know, If the issue still persists either me or one of our team member will help you on weekends.

    Regards
    Ravi

  • Participant
    Level: Enlightened
    Posts: 25
    imborx on #23046
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #23065

    Hi,
    Thank you for the update and sharing the details.

    It seems that the facebook plugin is logging user via ajax and our redirect is misfiring causing you the issue.

    Ravi will be updating the plugin and assisting you again tomorrow.

    Regards
    Brajesh

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2908
    Ravi on #23098
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 25
    imborx on #23102
    This reply has been marked as private.

The topic ‘ [Resolved] Issue with profile photo (BuddyPress Profile Completion)’ is closed to new replies.

This topic is: resolved