bp_hide_last_name( bool $default = true )

Allow members to hide last name field if in display format first name selected.

Description

Parameters

$default

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

Default value: true

Return

(bool) True if avatar uploads are disabled, otherwise false.

Source

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

1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
function bp_hide_last_name( $default = true ) {
 
    /**
     * Filters whether or not members are able to hide last name field.
     *
     * @since BuddyBoss 1.1.1
     *
     * @param bool $value Whether or not members are able to hide last name field.
     */
    return (bool) apply_filters( 'bp_hide_last_name', (bool) bp_get_option( 'bp-hide-last-name', $default ) );
}

Changelog

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