bp_disable_invite_member_email_subject( bool $default = false )

Is invite email subject customize disabled?

Description

Parameters

$default

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

Default value: false

Return

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

Source

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

1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
function bp_disable_invite_member_email_subject( $default = false ) {
 
    /**
     * Filters whether email subject customize is enabled or not.
     *
     * @since BuddyBoss 1.0.0
     *
     * @param bool $value Whether email subject customize is enabled or not.
     */
    return (bool) apply_filters( 'bp_disable_invite_member_email_subject', (bool) bp_get_option( 'bp-disable-invite-member-email-subject', $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.