-
Home
-
Premium Addons for Elementor
- Tips
How to Hide Premium Addons for Elementor Admin Menus
function plt_hide_premium_addons_for_elementor_menus() {
//Hide "Premium Addons for Elementor".
remove_menu_page('premium-addons');
//Hide "Premium Addons for Elementor → General".
remove_submenu_page('premium-addons', 'premium-addons#tab=general');
//Hide "Premium Addons for Elementor → Widgets & Add-ons".
remove_submenu_page('premium-addons', 'premium-addons#tab=elements');
//Hide "Premium Addons for Elementor → Global Features".
remove_submenu_page('premium-addons', 'premium-addons#tab=features');
//Hide "Premium Addons for Elementor → Integrations".
remove_submenu_page('premium-addons', 'premium-addons#tab=integrations');
//Hide "Premium Addons for Elementor → Version Control".
remove_submenu_page('premium-addons', 'premium-addons#tab=vcontrol');
//Hide "Premium Addons for Elementor → White Labeling".
remove_submenu_page('premium-addons', 'premium-addons#tab=white-label');
//Hide "Premium Addons for Elementor → System Info".
remove_submenu_page('premium-addons', 'premium-addons#tab=system-info');
//Hide "Premium Addons for Elementor → Upgrade To Pro!".
remove_submenu_page('premium-addons', 'https://premiumaddons.com/christmas-sale');
}
add_action('admin_menu', 'plt_hide_premium_addons_for_elementor_menus', 101);
Where do I put this code?
How to Hide the "Premium Addons News" Dashboard Widget
function plt_hide_premium_addons_for_elementor_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Premium Addons News" widget.
remove_meta_box('pa-stories', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_premium_addons_for_elementor_dashboard_widgets', 20);