The admin-menu tag has no wiki summary.
-1
votes
0answers
20 views
Remove Menu Item for users other than admin in Woocommerce
I want to remove a few menu items from the Products tab of Woocommerce when anyone below the level of an admin is logged in. Specifically, I would like to remove the categories, tags, shipping ...
0
votes
0answers
23 views
Remove menu items from wp-admin but they come back? [closed]
I am trying to hide some menu items for contributors. So i use
function my_remove_menu_pages() {
remove_menu_page('link-manager.php');
remove_menu_page('themes.php');
...
1
vote
1answer
20 views
Change position of media in admin menu
Is it possible to set the position of an item in the admin menu? I'm trying to move the media link under my custom post types. I know that the media link is position 10. Is it possible to set it to ...
0
votes
1answer
29 views
Trying to add script to specific admin page is not working
What I am trying to achieve is to load a .js file on an edit.php page, however the code is not working specifically for this page. I've applied the same code type of code to other CPT pages, but for ...
0
votes
1answer
23 views
Delete option doesn't appear for plugins
On the Plugins screen I have options to activate and deactivate plugins, but I no longer have the "Delete" option. I'm relatively sure the option appeared earlier.
Also, when I hover over "Plugins" ...
2
votes
1answer
50 views
How to minimize WP dashboard menu programmatically?
I'd like to programmatically (either with js or php, but I imagine it'd simpler with js) hide the dashboard admin menu using the same functionality that is already built in. All I want is, when the ...
1
vote
2answers
29 views
Admin Menus - Name Menu different from first Submenu [duplicate]
I am creating a submenu with the following code:
add_action( 'admin_menu', 'jp_create_admin_pages' );
function jp_create_admin_pages()
{
add_menu_page(
'Members',
'Members',
...
0
votes
2answers
40 views
Reference external file as a function
In my functions.php I have the following code:
add_action( 'admin_menu', 'jp_create_admin_pages' );
function jp_create_admin_pages()
{
add_menu_page(
'Members',
'Members',
...
1
vote
2answers
112 views
Hide widgets/plugins from dashboard
I have two plugins in the dashboard, SEO Wordpress and Custom Content Type Manager, and for security reasons I want to hide these from dashboard. How to do that?
I tried to hide the SEO Wordpress ...
1
vote
3answers
77 views
place a direct link to custom-stylesheet, under appearance menu in wp-admin
FINAL UPDATE: Updated code from @birgire solved my issue. If you are facing a similar issue, please read the accepted answer.
ORIGINAL QUESTION IN DETAIL:
Currently under the appearance menu in ...
1
vote
1answer
55 views
Add post-new.php?post_cat=catslug to admin menu
I made it possible to use post-new.php?post_cat=catslug in the wordpress admin for creating a new post with a pre-filled category by using the answer here:
How to add category to: ...
0
votes
1answer
27 views
Conflict between Capabilities and Menu Visibility with Custom Post Types
I hope this isn't just the result of typo on my end, but if it is, I'm not seeing it.
I'm adding a custom post type to my site. Actually I'm adding three. Two of them I'm trying to set custom ...
0
votes
1answer
35 views
Edit specific nodes in WP_Admin_Bar
Is it easily possible to edit links in the WP_Admin_Bar global $wp_admin_bar instance?
2
votes
1answer
132 views
Generate Advanced Custom Fields box in custom admin menu page
I have created an custom admin menu page called FCC Youtube with add_menu_page function
which has some custom fields I manually generated via HTML and PHP:
code ( just the part how I created this ...
0
votes
0answers
63 views
Call to undefined function add_menu_page() on theme activation
I am attempting to activate a theme that works perfectly on one WordPress install. I have matched the plugins installed up and copied the theme over but when I go to activate it I get...
Fatal ...
4
votes
1answer
87 views
Remove a menu item created by a plugin
I'm trying to remove a menu item and tried several approaches, but have not had any luck. It was created from a FAQ plugin.
If I use this line:
remove_menu_page( 'edit.php?post_type=question' );
...
1
vote
1answer
67 views
Modify custom Users Manage page
I'm trying to create a submenu page under 'Users' which is like the 'All Users' page but for listing users of specific roles only. Let's just call this submenu page 'Customer'.
So far I managed to ...
0
votes
1answer
33 views
How to add custom post type under option page
Anybody please help me to figure out how to add custom post type in Settings menu (option_page). Basically it is easy for custom admin menu by using:
'show_in_menu' => 'menu-slug'
but i like to ...
2
votes
1answer
69 views
Add Admin Menu Inside Construct or Init
I thought I was making headway in my WordPress Development education until I ran across the Boilerplate for WordPress plugins and it uses a class object. I'm fine with that and understand those ...
0
votes
1answer
34 views
Function Reference for custom link in Admin Menu Management Page
What is the function reference for the text within the URL field in the Admin Menu page?
I have a PHP function that is utilizing the_content function reference to look for specific file paths and ...
0
votes
1answer
42 views
What's causing this error? “Warning: Invalid argument”
I noticed today that my error logs are littered with this information. I'm not quite sure what's causing it. Has anyone seen this before?
[Mon Mar 25 17:24:23 2013] [error] [client] PHP Warning: ...
1
vote
1answer
162 views
Adding a custom admin page
I want to add a page of content (a readme file) in the WordPress admin, I can't seem to find how to do this in the codex - can anyone point me in the right direction? It will literally just be a ...
2
votes
1answer
85 views
Admin menu as submenu from another plugin
I would like to add my new developed plugin's admin menu to an existing plugin as sub menu. Would be possible to do this?
In my first plugin I initilize the menus as follows:
function add_pages() {
...
-2
votes
1answer
36 views
Show the content of Admin menu to a page
I have created a new page and want to show the content of a Admin Menu in that new page.
How can I do it?
0
votes
1answer
72 views
Restrict certain actions to plugin-specific admin menu pages only
I'm working on a plugin and want to restrict some things to my plugin-specific admin menu pages only. Therefore, I write the slugs being returned when adding (sub)menu pages into an array so I can ...
0
votes
2answers
39 views
Remove the theme info from main dashboard screen- not appearance
I've successfully used the code from the post:
Restrict ADMIN menu items based on username, replace username with an actual user's name.
The problem is the theme still shows on the main dashboard and ...
2
votes
1answer
105 views
Put update-like notification bubble on multiple CPTs menus for pending items
Much like how the Plugins or Comments menu items have these number notifications in a bubble for updates and unmoderated comments respectively, I'd like to use that bubble to display the number of ...
0
votes
2answers
65 views
Remove Menu Page Giving Error
I have a snippet of code I've written in the functions.php file which is simply to remove menu pages if the user cannot activate plugins. It works as intended; however it is showing a PHP error in ...
0
votes
1answer
40 views
remove_menu_page breaks “Add media”
Using the the remove_menu_page function results in a really strange bug. By adding the code below in the functions.php file the integrated "Add media" widget starts to bug.
function ...
5
votes
5answers
334 views
Add separator to admin submenu
I would like to add a separator to the admin submenu section, NOT in the top level section.
I'm thinking of using javascript and styling to do the job, but I was wondering if there's a more ...
0
votes
1answer
49 views
Grant access to admin menu?
I'm trying to grant the user role 'editor' to have access to the Users top-level menu, and then control which sub-menus they have access to. The add_action lives in the _construct method.
add_action( ...
3
votes
1answer
51 views
How Can I remove or hide the export page in WordPress menu?
I'm trying to remove the export.php page from WordPress admin menu -> tools
for a multisite so only the network admin could see it
I have the following code so far but can't get it to work.
...
0
votes
1answer
47 views
Silently register plugin pages
I am developing one of my first plugins, and have come across a error:
You do not have sufficient permissions to access this page
The plugin has a wizard that uses several forms, obviously I ...
0
votes
1answer
57 views
Making Comments, a sub_menu in admin menu
I know this may be a bit crazy, and hopefully there's a way of doing this with out chopping up the core.
I am trying to clean up my Wordpress admin menu's and in doing such I'd like to move Comments ...
-1
votes
1answer
112 views
Hidden page wp-admin [closed]
I have now updated the code and added this
remove_submenu_page( $menu_slug, $submenu_slug )
function so the page can be accessed even when hidden.
function ccms_developer_theme_menu() {
...
0
votes
2answers
77 views
WordPress settings API error when checkbox unchecked
I am trying to creating some custom options for a template I am developing but I am getting an error when the checkbox (Line 130) is unchecked:
Warning: Illegal string offset 'show_admin_dev' in ...
1
vote
1answer
813 views
How can I use a different default admin menu icon for custom post type?
For a particular custom post type I'm setting, I simply want to change the default icon to the wordpress pages icon (menu-icon-page).
I know I could upload my own pages icon and point to it, but can ...
0
votes
1answer
213 views
Usage of custom post types in a custom admin menu
This question is a little hard to explain but i will try to be as clear as i can:
I have a custom theme that i am presently working on, within this theme i have added a top level menu in wp-admin ...
0
votes
1answer
30 views
Admin sidebar customization
My new clients wordpress site does not have plugins, appearance or any of the other default items in the admin sidebar. Can anyone tell me how I get those to appear. The site is being run in a ...
0
votes
1answer
57 views
Change the $parent_file of a plugin page
I have a plugin that has 3 pages. One of those pages, I don't want displayed in the admin menu (working), but when a user is on that page, I want the plugin menu to be active.
I'm using the ...
0
votes
1answer
104 views
Add an admin page, but don't show it on the admin menu
I have a custom plugin 'Charts' that has it's own menu. In that menu are links to the 3 pages for the plugin - 'Charts', 'Add Chart' and 'Edit Chart'. However, I don't want to display the link to ...
0
votes
1answer
108 views
Re-ordering Admin Submenu Sections
I was looking at the method below to reorder the Admin Menu Sections:
http://wordpress.stackexchange.com/a/1220/1044
...and was wondering if it's possible to reorder the submenu sections using ...
1
vote
1answer
203 views
How to make a WP admin button/menu similar to Jetpack Notifications?
I would like to add a button to the WP admin toolbar, similar to the Notifications feature released in Jetpack 1.9.1 (I think it was). The notifications icon is displayed beside the account button, to ...
1
vote
1answer
265 views
OOP Plugin and Menu - Call to undefined function register_setting()
WordPress documentation seems spotty on object-oriented code. I'm setting up a few plugins and the first should register settings and a menu page. It's throwing "undefined" for the ...
1
vote
2answers
39 views
Admin pages have no content
Not the usual white screen of whatever horror, my site is shown normally until you go to the admin dashboard. While the dashboard (or the admin menu if you will) is visible and responds accordingly, ...
2
votes
1answer
203 views
How to add admin bar and admin menu or submenu notification bubbles?
What would you recommend to use as far as manipulating the admin bar goes? I was thinking to just add a new admin bar node, and with CSS set a background image for the icon. Then in the node, just ...
1
vote
2answers
131 views
Can I have Post Types under other Post Types in Admin menu?
Lets say I have created two custom post types A and B. Those post types are displayed in the Admin menu one after another. (After Posts for example)
Is there a way to display B under A?
The only ...
3
votes
1answer
211 views
How Do I Programmatically Better Organize Custom Post Type Menus?
A project I inherited had a dozen custom post types. Trouble is, they all come off the admin menu sidebar separately. It's not very tidy. Is there a plugin where I can make these subitems of a parent ...
1
vote
1answer
48 views
Link to Second Level Admin Page
I have created a plug-in with an Admin Menu that displays a list of artists saved into the database in a custom table. This page is a "master" page and I am trying to figure out how to link the artist ...
0
votes
3answers
328 views
Change top level menu item to point to custom submenu item
I'm using a plugin called CMS Page Order http://wordpress.org/extend/plugins/cms-page-order/ (Now referred to as CPO)
It's pretty simple, the said plugin adds a new item to the submenu of every ...



