Tips on Customizing Bitcoin and Altcoin Wallets

How to Hide Bitcoin and Altcoin Wallets Admin Menus

function plt_hide_wallets_menus() {
	//Hide "Settings → Bitcoin & Altcoin Wallets".
	remove_submenu_page('options-general.php', 'wallets_settings_page');
	//Hide "Wallets Admin Docs".
	remove_menu_page('wallets_docs');

	//Hide "Wallets".
	remove_menu_page('edit.php?post_type=wallets_wallet');
	//Hide "Wallets → All Wallets".
	remove_submenu_page('edit.php?post_type=wallets_wallet', 'edit.php?post_type=wallets_wallet');
	//Hide "Wallets → Add New Wallet".
	remove_submenu_page('edit.php?post_type=wallets_wallet', 'post-new.php?post_type=wallets_wallet');

	//Hide "Currencies".
	remove_menu_page('edit.php?post_type=wallets_currency');
	//Hide "Currencies → All Currencies".
	remove_submenu_page('edit.php?post_type=wallets_currency', 'edit.php?post_type=wallets_currency');
	//Hide "Currencies → Add New Currency".
	remove_submenu_page('edit.php?post_type=wallets_currency', 'post-new.php?post_type=wallets_currency');
	//Hide "Currencies → Currency Tags".
	remove_submenu_page('edit.php?post_type=wallets_currency', 'edit-tags.php?taxonomy=wallets_currency_tags&post_type=wallets_currency');

	//Hide "Addresses".
	remove_menu_page('edit.php?post_type=wallets_address');
	//Hide "Addresses → All Addresses".
	remove_submenu_page('edit.php?post_type=wallets_address', 'edit.php?post_type=wallets_address');
	//Hide "Addresses → Add New Address".
	remove_submenu_page('edit.php?post_type=wallets_address', 'post-new.php?post_type=wallets_address');
	//Hide "Addresses → Address Tags".
	remove_submenu_page('edit.php?post_type=wallets_address', 'edit-tags.php?taxonomy=wallets_address_tags&post_type=wallets_address');

	//Hide "Transactions".
	remove_menu_page('edit.php?post_type=wallets_tx');
	//Hide "Transactions → All Transactions".
	remove_submenu_page('edit.php?post_type=wallets_tx', 'edit.php?post_type=wallets_tx');
	//Hide "Transactions → Add New Transaction".
	remove_submenu_page('edit.php?post_type=wallets_tx', 'post-new.php?post_type=wallets_tx');
	//Hide "Transactions → TX Tags".
	remove_submenu_page('edit.php?post_type=wallets_tx', 'edit-tags.php?taxonomy=wallets_tx_tags&post_type=wallets_tx');

	//Hide "Tools → Fiat deposits".
	remove_submenu_page('tools.php', 'wallets-bank-fiat-deposits');
	//Hide "Tools → Fiat withdrawals".
	remove_submenu_page('tools.php', 'wallets-bank-fiat-withdrawals');
	//Hide "Tools → Cold storage".
	remove_submenu_page('tools.php', 'wallets-cold-storage');
	//Hide "Tools → Wallets Migration".
	remove_submenu_page('tools.php', 'wallets_migration');
}

add_action('admin_menu', 'plt_hide_wallets_menus', 1001);

Where do I put this code?

How to Hide the "Bitcoin and Altcoin Wallets" Dashboard Widget

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

	//Remove the "Bitcoin and Altcoin Wallets" widget.
	remove_meta_box('wallets-dashboard-widget', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_wallets_dashboard_widgets', 20);