bp_disable_invite_member_email_content( bool $default = true )

Is invite email content customize disabled?

Description

Parameters

$default

(Optional) Fallback value if not found in the database. Default: false.

Default value: true

Return

(bool) True if email content customize enabled, otherwise false.

Source

File: bp-core/bp-core-options.php

1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
function bp_disable_invite_member_email_content( $default = true ) {
 
    /**
     * Filters whether email content customize is enabled or not.
     *
     * @since BuddyBoss 1.0.0
     *
     * @param bool $value Whether email content customize is enabled or not.
     */
    return (bool) apply_filters( 'bp_disable_invite_member_email_content', (bool) bp_get_option( 'bp-disable-invite-member-email-content', $default ) );
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 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.