• you have some code listed on your depreated plugin this came from to skip pages. Do you have an update to this code that works with this plugin as well? Also the depreceated plugin was updated most recently than this one so wich one should we be using?

    /**
     * Do not redirect users on non bp pages.
     *
     * @param bool $skip should we skip or redirect.
     *
     * @return bool
     */
    function buddydev_skip_redirect_on_non_bp_pages( $skip ) {
    
    	if ( ! is_buddypress() ) {
    		$skip = true;
    	}
    
    	return $skip;
    }
    
    add_filter( 'bp_force_profile_photo_skip', 'buddydev_skip_redirect_on_non_bp_pages' );
Viewing 1 replies (of 1 total)
  • teeboy4real

    (@teeboy4real)

    change bp_force_profile_photo_skip to this bp_force_profile_completion_skip_check

Viewing 1 replies (of 1 total)
  • The topic ‘Skip pages’ is closed to new replies.