-
Home
-
Album and Image Gallery plus Lightbox
- Tips
How to Hide the "Album Gallery" Admin Menu
function plt_hide_album_and_image_gallery_plus_lightbox_menus() {
//Hide the "Album Gallery" menu.
remove_menu_page('album-and-image-gallery-plus-lightbox');
}
add_action('admin_menu', 'plt_hide_album_and_image_gallery_plus_lightbox_menus', 1000);
Where do I put this code?
How to Hide Album and Image Gallery Plus Lightbox Meta Boxes
function plt_hide_album_and_image_gallery_plus_lightbox_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Album and Image Gallery Plus Lightbox - Settings" meta box.
remove_meta_box('aigpl-post-sett', $screen->id, 'normal');
//Hide the "More Premium - Settings" meta box.
remove_meta_box('aigpl-post-metabox-pro', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_album_and_image_gallery_plus_lightbox_metaboxes', 20);