Results 1 to 2 of 2

Thread: Remove plugin admin link in admin menus?

  1. #1
    jwack is offline Hello World
    Join Date
    Aug 2009
    Posts
    46

    Default Remove plugin admin link in admin menus?

    I am trying to remove the "contact" link added by contact form 7 into the admin menu. This should work, right??? (I am removing for all non admin users.

    Code:
    add_action( 'admin_menu', 'my_remove_menu_pages' ); function my_remove_menu_pages() { 	If($current_user->user_login != 'admin') { 		remove_menu_page('admin.php?page=wpcf7'); 	} }
    Not sure what I am doing wrong...

  2. #2
    jwack is offline Hello World
    Join Date
    Aug 2009
    Posts
    46

    Default

    Not sure why the above doesn't work, but the plugin author posted this link http://contactform7.com/blog/2009/11...tration-panel/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •