Tagged: , ,

Viewing 3 reply threads
  • Author
    Posts
    • #7171
      chrisatoddball
      Participant

      How would I hide the PikList admin menu? It seems superfluous to my plugin’s needs.

    • #7181
      Steve
      Keymaster

      @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' );
    • #7191
      chrisatoddball
      Participant

      Thanks, Steve!

      LOVING PikList! It feels more like a true framework than anything else I’ve used.

    • #7225
      Steve
      Keymaster

      @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!

Viewing 3 reply threads
  • You must be logged in to reply to this topic.