Tips on Customizing Report For Lemon Squeezy

How to Hide the "LS Sales Report" Admin Menu

function plt_hide_report_for_lemon_squeezy_menus() {
	//Hide the "LS Sales Report" menu.
	remove_menu_page('ls_report_settings');
}

add_action('admin_menu', 'plt_hide_report_for_lemon_squeezy_menus', 11);

Where do I put this code?

How to Hide the "Lemon Squeezy Sales Report" Dashboard Widget

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

	//Remove the "Lemon Squeezy Sales Report" widget.
	remove_meta_box('ls_sales_widget', 'dashboard', 'normal');
}

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