bp_nouveau_messages_mce_buttons( array $buttons = array() )

Disable the WP Editor buttons not allowed in messages content.

Description

Parameters

$buttons

(Optional) The WP Editor buttons list.

Default value: array()

(Required) The filtered WP Editor buttons list.

Source

File: bp-templates/bp-nouveau/includes/messages/functions.php

345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
function bp_nouveau_messages_mce_buttons( $buttons = array() ) {
    $remove_buttons = array(
        'wp_more',
        'spellchecker',
        'wp_adv',
        'fullscreen',
        'alignleft',
        'alignright',
        'aligncenter',
        'formatselect',
    );
 
    // Remove unused buttons
    $buttons = array_diff( $buttons, $remove_buttons );
 
    // Add the image button
    //array_push( $buttons, 'image' );
 
    return $buttons;
}

Changelog

Changelog
Version Description
BuddyPress 3.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.