Tips on Customizing LadiApp: Landing Page, PopupX, Marketing Automation, Affiliate Marketing…

How to Hide the "LadiApp" Admin Menu

function plt_hide_ladipage_menus() {
	//Hide the "LadiApp" menu.
	remove_menu_page('ladipage-config');
}

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

Where do I put this code?

How to Hide the "Post Attributes" Meta Box

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

	//Hide the "Post Attributes" meta box.
	remove_meta_box('pageparentdiv', $screen->id, 'side');
}

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