-
Home
-
TS Poll – Survey, Versus Poll, Image Poll, Video Poll
- Tips
How to Hide Poll Admin Menus
function plt_hide_poll_wp_menus() {
//Hide "TS Poll".
remove_menu_page('ts-poll');
//Hide "TS Poll → All Polls".
remove_submenu_page('ts-poll', 'ts-poll');
//Hide "TS Poll → Add Poll".
remove_submenu_page('ts-poll', 'ts-poll-builder');
//Hide "TS Poll → Pro Features".
remove_submenu_page('ts-poll', 'ts-poll-pro');
//Hide "TS Poll → Add-Ons".
remove_submenu_page('ts-poll', 'ts-poll-add-ons');
}
add_action('admin_menu', 'plt_hide_poll_wp_menus', 121);
Where do I put this code?
How to Hide the "TS Poll" Dashboard Widget
function plt_hide_poll_wp_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "TS Poll" widget.
remove_meta_box('tspoll_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_poll_wp_dashboard_widgets', 20);