Tips on Customizing Free Follow-Up Emails & Marketing Automation for WooCommerce – ShopMagic

How to Hide ShopMagic for WooCommerce Admin Menus

function plt_hide_shopmagic_for_woocommerce_menus() {
	//Hide "Tools → Scheduled Actions".
	remove_submenu_page('tools.php', 'action-scheduler');

	//Hide "ShopMagic".
	remove_menu_page('shopmagic-admin');
	//Hide "ShopMagic → Dashboard".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin');
	//Hide "ShopMagic → Automations".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/automations');
	//Hide "ShopMagic → Marketing Lists".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/marketing-lists');
	//Hide "ShopMagic → Logs".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/logs/outcomes');
	//Hide "ShopMagic → Guests".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/guests');
	//Hide "ShopMagic → Settings".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/settings');
	//Hide "ShopMagic → Start Here".
	remove_submenu_page('shopmagic-admin', 'shopmagic-admin#/welcome');
}

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

Where do I put this code?

How to Hide the "Grow your business with WP Desk" Dashboard Widget

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

	//Remove the "Grow your business with WP Desk" widget.
	remove_meta_box('shopmagic-for-woocommerce', 'dashboard', 'normal');
}

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