bp_ld_popup_register_redirect( bool $bool )

Do not redirect to user on register page if user doing registration on LD Popup.

Description

Parameters

$bool

(bool) (Required)

Source

File: bp-integrations/learndash/bp-learndash-filters.php

function bp_ld_popup_register_redirect( $bool ) {

	if (
		isset( $_POST )
		&& isset( $_POST['learndash-registration-form'] )
		&& 'true' === $_POST['learndash-registration-form']
	) {
		return false;
	}

	return $bool;
}

Changelog

Changelog
Version Description
BuddyBoss 1.2.3 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.