Tips on Customizing BBP Core – Expand bbPress powered forums with useful features

How to Hide BBP Core Admin Menus

function plt_hide_bbp_core_menus() {
	//Hide the "BBP Core" menu.
	remove_menu_page('bbp-core');
	//Hide the "BBP Core → Forum Builder" menu.
	remove_submenu_page('bbp-core', 'bbp-core');
	//Hide the "BBP Core → Upgrade" menu.
	remove_submenu_page('bbp-core', 'bbp-core-pricing');
}

add_action('admin_menu', 'plt_hide_bbp_core_menus', 1000000000);

Where do I put this code?

How to Hide BBP Core Meta Boxes

function plt_hide_bbp_core_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Attachments Settings" meta box.
	remove_meta_box('gdbbattach-meta-forum', $screen->id, 'side');
	//Hide the "bbPress Voting" meta box.
	remove_meta_box('bbp_voting', $screen->id, 'side');
	//Hide the "Attachments List" meta box.
	remove_meta_box('gdbbattach-meta-files', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_bbp_core_metaboxes', 20);