- This topic has 3 replies, 3 voices, and was last updated 6 years, 8 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Hi Andrew
You can add this to functions.php
function wpcodex_adjust_the_wp_menu() {
$page = remove_submenu_page( 'edit.php?post_type=search-filter-widget', 'search-filter-settings' );
$page = remove_submenu_page( 'edit.php?post_type=search-filter-widget', 'search-filter-licence-settings' );
$page = remove_submenu_page( 'edit.php?post_type=search-filter-widget', 'search-filter-system-status' );
}
add_action( 'admin_menu', 'wpcodex_adjust_the_wp_menu', 999 );
Thanks 🙂