Tools for site administration located in the `wp-admin` directory of a WordPress site.
1
vote
1answer
92 views
Filter Custom Post Type in Admin
I have a custom post type that has custom meta that I want to be able to filter on the Admin page. Much like the "All | Published | Drafts | and Trash" links located above the post list. I can't seem ...
0
votes
0answers
43 views
Remove featured image link not working
I added a featured image to my post through set featured link in backend. Not when i click on remove featured image, it removes it . But when i update the post then, The featured image still comes ...
0
votes
2answers
213 views
wp_list_tables bulk actions
How to fire on bulk actions inside of an extended WP_List_Table.
I have been adding the following bulk actions to may table's select box but on Apply won't really happens anything
here are how I ...
0
votes
0answers
27 views
force to load media-views css styles
I'm creating a modal window similar to the one media upload modal window that's part of the core WP. I'd like to use the same styles that are already there, I noticed that the styles are
loaded via ...
3
votes
3answers
865 views
Removing fields from the Media Uploader/Gallery
I've been searching high and low for an answer.
I simply want to remove the Alternate Text, Caption, Description and Link URL-fields from the uploader and gallery view.
I seem that every thing else ...
2
votes
2answers
75 views
How do I allow users to follow a post and then allow admins to email all users who have followed that post?
I'm looking to build out the following functionality, but I'm having trouble finding any help on it:
user follows a post > user's email is pulled into an admin page and associated with said post > ...
1
vote
2answers
68 views
Difference Between Admin and Super Admin in Database
I was looking at the user table and noticed for a super admin ( have access to network admin panel ) and an admin to a network site have same wp_capabilities which is a:1:{s:13:"administrator";b:1;} ...
0
votes
2answers
219 views
How to load php file for specific page in admin?
Hello and thanks for the guidance!
Trying to load a custom .php file for only my home page (template is page-home.php) by using this code:
add_action('admin_init','load_home_meta');
function ...
1
vote
2answers
171 views
Conditionally load CSS/JS/PHP in wp-admin if using a mobile device
I'm looking for a way to conditionally load different scripts if the user is accessing the admin area from a mobile device.
In my case I'm looking to restrict the user to just be able to make new ...
1
vote
1answer
87 views
Disable wp-admin console for subscribers
I do not want the users (role: subscriber) to be able to login via the wp-admin.
How would you suggest I do this ?
4
votes
5answers
6k views
How to increase the file size limit for media uploads?
How can I change the Maximum upload file size? I would like to be able to upload 10Mb at a time.
0
votes
0answers
43 views
Saving comments meta values in admin [closed]
This code is for creating a custom meta value for comment. It must be displayed and edited from comment edit screen in the admin area. The meta values are not being saved to the database and I don't ...
0
votes
1answer
57 views
Function to prevent users from trashing comments
Is there any way to prevent/hide trash button for comments?
Note that I only want to prevent users from emptying the trash for comments. Can't seem to find a way. Is there any possible way to do that ...
0
votes
2answers
182 views
Error activating certain plugins
When I try to activate All-In-One SEO Pack or ANY (I've tried all by now!) caching plugin, the page goes blank - i.e the content of the page empty, except the WordPress bar on the top and the toolbar ...
2
votes
1answer
98 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() {
...
16
votes
3answers
14k views
Changing Admin Menu Labels
I have spent the last day using the functions.php file to fully customize WordPress for my client sites. I am amazed at how much I have been able to accomplish and how much easier it will make things ...
2
votes
2answers
228 views
How to make custom bulk actions work on the media/upload page?
I'm adapting a script I found online to add custom bulk actions to the screen with the list of posts. It has this line:
add_action('load-edit.php', 'custom_bulk_action');
I'm trying to adapt it for ...
5
votes
1answer
529 views
Remove “Time to upgrade” message from dashboard
So far I've been using the following code to remove the dashboard update message ("WordPress 3.5 is available! Please update now."):
remove_action('wp_version_check', 'wp_version_check');
...
0
votes
2answers
74 views
Problems in migration of WordPress site from local server to the online server
I am finding some problems uploading a WP site from my local webserver to the official online webserver.
The situation is the following one, on my local web server:
I have install WP website on my ...
0
votes
1answer
89 views
How to use “menu_order” field for posts?
I have a special case where I'd like to order posts in a custom order and it would be great to use the "menu_order" field that is normally only used for pages. What would be the best way to expose ...
0
votes
2answers
274 views
Custom Columns WordPress Admin
I am just about finished creating custom columns through the WordPress admin panel.
The custom post type I am using is called "slides". I figured out how to add the column titles and all of the ...
0
votes
5answers
4k views
wp-admin is redirecting to back to home page (localhost)
I have WordPress installed on my localhost. All worked perfectly till today. But today when I enter http://localhost/wp-admin in the url to access the admin panel, it redirects back to the home page. ...
1
vote
1answer
107 views
Lost administrator privileges and can't find a fix
WordPress 3.5.1
Web Host: Windows Azure Cloud
Database Host: Cleardb
Web Server: IIS 7.5
I've built a custom child theme that runs on the Genesis Framework and it has multiple custom post types ...
0
votes
0answers
10 views
Manage sub-admins and their content
I have a project in which I need to affect roles to sub-admins like "Managing merchants". So a sub-admin can manage merchant (edit, remove it, etc.). All that will be done in the back-end panel, so no ...
0
votes
1answer
750 views
Admin top level menu, pointing to an external url
I want to create a entirely new top level menu in the admin menu section, and have that be an external link, is this even possible with the current system?
The solution that t31os provides in this ...
0
votes
2answers
130 views
No HTML/Visual mode option in admin panel (New Post)
There is no option for switching html to visual mode in add new post page of my admin panel
there is no js error in console
reinstalled WP from WP updates admin panel too,
and there are no 404 on ...
48
votes
11answers
25k views
Adding a Taxonomy Filter to Admin List for a Custom Post Type?
I have created a Custom Post Type called 'listing' and added a Custom Taxonomy called 'businesses'. I would like to add a dropdown list of Businesses to the admin list for the Listings.
Here is what ...
0
votes
1answer
57 views
Separate tags with semicolon
Does anyone know if there is a way to change the callback function for a tag-like custom taxonomy so that it breaks terms after a semicolon instead of a comma? I realize I can rewrite the whole meta ...
1
vote
1answer
88 views
Hide page visual editor if template is selected - redux
The answer given to a previous and identical question is unfortunately not working on my WP install.
I'm using a version of the function recommended there.
function nim_hide_editor() {
$post_id ...
1
vote
1answer
31 views
Issue plugin commands in admin settings page
What is the right way to issue commands in wp-admin? My plugin imports data from a set of RSS feeds via a cron job. Thats all working good. I've set up a custom settings page to change parameters, and ...
1
vote
1answer
36 views
Adding Custom Capabilites
So, I'm not sure if this is possible, but is it possible to add custom Capabilities?
So, I've written a group message application, that ties in with Wordpress. I only want certain members (set via ...
0
votes
1answer
59 views
How can I limit page parent dropdown to show only author's own pages?
I'm trying to get the page parent dropdown (in page attributes) to show only pages that have been published by the author of the current page.
This doesn't seem to work :
add_filter( ...
-1
votes
0answers
67 views
wp-login/admin redirects to different dash
I'm having a problem with cloning wordpress and trying to login to the new one. I've searched the wordpress support pages but couldn't find a fix.
I have a client who wants a website exactly like ...
24
votes
10answers
11k views
Can I rename the wp-admin folder?
Is it possible to rename the wp-admin folder?
I know I could just rename it, but unless it's supported by the code lots of things would break.
If I use a custom folder name, it will make it slightly ...
7
votes
6answers
2k views
Disable dragging of meta boxes?
Anyone know how to disable this functionality so the meta boxes can't be repositioned?
0
votes
0answers
68 views
Page Revisions Missing From Screen Options
We've just launched a client site and they're noticed that revisions are missing for pages. The option to show them in "screen options" is missing. It is there and working for posts and other custom ...
0
votes
1answer
60 views
How can I remove unwanted word on my WP site?
As this post will likely show, I am new at working with WordPress. My church website is built in WP. Recently I noticed that there is the word, "Array" that appears in the left upper portion of each ...
-1
votes
0answers
76 views
Parent page filter to show children at all depths
I am using the code below (adapted from this source) to add a parent page filter to the list of pages in wp-admin.
It seems to work a treat, but only at a depth of 1. I would like to return results ...
0
votes
1answer
135 views
Wordpress Options Page not working
So, I need to add a custom options page, and based on as many tutorials I could find, I came up with the following code to create an officers & chairs options page for my group, mainly, so I can ...
3
votes
3answers
224 views
Make fonts.com font work in TinyMCE (iframe referrer issue)
I'm using custom (commercial) fonts in my project. Everything works well in the frontend.
I noticed however that, when trying to add this font to the TinyMCE iframe, I get a 403 for the webfonts. The ...
4
votes
6answers
844 views
Add header and footer to WP backend
I want to add a header in the backstage in order to look more blend in like the frontend. Nothing much I want to add, just the header and footer is enough. The content section remains the original ...
1
vote
2answers
622 views
How to disable or hide “collapse menu”
Is there a code in functions.php that I can add to disable or hide "collapse menu" button?
The one that is on the left side of the admin menu in the dashboard. I'd need it for both admin, authors, ...
0
votes
2answers
128 views
jQuery UI inside widget on admin page
I have created a widget that has quite a few settings, and so I am trying to create a tabbed menu (using jQuery UI) inside the widget settings of the admin page.
The problem is basically that tabs ...
0
votes
1answer
301 views
Fatal error: Exception thrown without a stack frame in Unknown on line 0
I'm getting a really cryptic error and I'm not sure where to begin.
The site (http://www.petcercise.com/) works fine, but when I attempt to go to /wp-admin/ I get the following error:
Fatal ...
2
votes
1answer
208 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 ...
0
votes
1answer
174 views
500 Internal Server Error after Register dialog, but with successful registration
I get a 500 Internal Server error if I try to register a new user. This user will be created successfully, but I don't want that my users will see the error page and, therefore, think that something ...
0
votes
1answer
86 views
Unwanted redirect in admin area
I have a strange behaviour on my backend. This is possible due to the way my WordPress is located.
I installed it in a VirtualBox, using Ubuntu from the standard repository (i.e., apt-get install ...
-1
votes
1answer
40 views
jQuery “on” handler does not fire on newly inserted widgets [closed]
I have a jQuery script attached to the widget.php page via an add_action('admin_footer') call.
The jQuery executes fine on widget items that were in place when the page loaded. However, on newly ...
2
votes
2answers
426 views
Wp3.5 Media Gallery Edit modal: change captions to title
How can i change those editing inputs to title from caption?
Some sources i found about new upload system:
Using the WordPress 3.5 Media Uploader within plugins
How to Add the WordPress 3.5 Media ...
0
votes
1answer
325 views
admin-ajax.php loading many times
My site is running slow, because the file "admin-ajax.php" is loaded many times. see screenshot here:
http://f.cl.ly/items/2b0O3Q0X27433X2F2j3U/Bildschirmfoto%202013-02-23%20um%2014.13.14.png
Here ...


