- This topic has 3 replies, 2 voices, and was last updated 5 years, 5 months ago by .
Viewing 3 reply threads
Viewing 3 reply threads
- You must be logged in to reply to this topic.
Support Home » Topics » Piklist » How do I hide the PikList menu
How would I hide the PikList admin menu? It seems superfluous to my plugin’s needs.
@chrisatoddball– Welcome to the Piklist Community!
The settings page is registered with a filter. Place this code in your plugin or themes functions.php file:
function my_remove_filters(){
remove_filter('piklist_admin_pages', array('piklist_setting', 'admin_pages'));
}
add_action( 'after_setup_theme', 'my_remove_filters' );
Thanks, Steve!
LOVING PikList! It feels more like a true framework than anything else I’ve used.
@chrisatoddball– Glad you love Piklist!
If you have a few minutes would you mind leaving a review on WordPress.org? It really helps the project.
Thanks!