-
Home
-
Redirection for Contact Form 7
- Tips
How to Hide Redirection for Contact Form 7 Meta Boxes
function plt_hide_wpcf7_redirect_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Action Meta" meta box.
remove_meta_box('wpcf7r_action_meta', $screen->id, 'advanced');
//Hide the "Lead Details" meta box.
remove_meta_box('wpcf7r_leads', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_wpcf7_redirect_metaboxes', 20);
Where do I put this code?
How to Hide the "WordPress Guides/Tutorials" Dashboard Widget
function plt_hide_wpcf7_redirect_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "WordPress Guides/Tutorials" widget.
remove_meta_box('themeisle', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_wpcf7_redirect_dashboard_widgets', 20);