Users with the ability to perform administrative tasks for a site or a network of sites.
0
votes
1answer
64 views
Assign a category by user and customize the edit-tags.php?taxonomy=category page
I've been searching for days now without success... Here's my goal:
- assign a top level category by user (this I've made it)
- let each user create child categories only in his assigned category ...
0
votes
1answer
123 views
Add JavaScript in admin in custom plugin [duplicate]
Possible Duplicate:
What is the preferred way to add custom javascript files to the site?
I was reading few posts here about this, but all answers are about wp_enqueue_script or something. ...
0
votes
1answer
79 views
Display an image of selected template in admin to aid user when using complex templates
Edit:
It seems that I have not explained myself very well...
I am simply trying to add an image to the page attributes area of the admin area depending on what template is selected, here is a simple ...
5
votes
3answers
975 views
How to hide admin account in BuddyPress? (for security reasons)
I have been working with WordPress for the past 3-4 years, but I am new to BuddyPress.
I would like to hide the admin account completely from BuddyPress for security reasons. For example with a ...
0
votes
1answer
56 views
Screen Options Wordpress WYSIWYG
Is there any way to set a checkbox for WYSIWYG box in this options so admin is able to hide it in case there's no need for content in a page
4
votes
3answers
79 views
How to let authors revise other authors drafts, but keep them from publishing?
I want to give all authors permission to edit other authors drafts, but not publish them. It seems like the only way to give authors access to drafts by other authors is to grant them ...
2
votes
3answers
644 views
Role that can edit only widgets, not other theme options
How could I make particular role access widgets administration menu (wp-admin/widgets.php), but not access other theme administration menu elements.
I have got that far as to display Appearance menu ...
0
votes
1answer
250 views
How to display message (with switch_theme hook) after deactivating My theme?
I'm able to display a message by activation of my theme with the 'new' after_switch_theme hook this way:
function themeActivationFunction($oldname, $oldtheme=false) {
$msg = '
<div ...
0
votes
2answers
95 views
How can I open up my administrative panel to everyone?
I'm planning on running a open news site that I want everyone to be able to view the inside of the site without registration. I feel like it should exist a simple check for viewing the WordPress ...
1
vote
1answer
298 views
Associating custom submenu item with post type of top level menu item
I'm working on a plugin that sets admin menu submenu pages on all different post types.
I need to be able to associate these new submenu pages with the corresponding post type of the top level menu ...
0
votes
1answer
95 views
How do I hide a term from non-admin users in get_the_term_list?
I have a term that I'd like logged in admin users to see while they're browsing the site while keeping it hidden from the public.
I'd prefer to have it done at the lowest level possible, even so far ...
-1
votes
1answer
84 views
How to Add Multiple Pointers in a Single Page? [closed]
Feature pointers were introduced with WordPress 3.3 as a core feature but does any one know how to add multiple WordPress Pointers to a single page?
1
vote
1answer
75 views
How can we hide the parent's theme url at the child themes details on a multisite?
I hope the title makes sense.
But anyway, to clear things up, here is a screen shoot of what I mean:
To be honest I really don't see how site admins benefit from this piece of information since ...
2
votes
1answer
221 views
WordPress - wp-admin subdomain
I'm new with WordPress, trying to map the wp-admin to a subdomain:
instead of:
www.mydomain.net/wp-admin
I would like:
admin.mydomain.net
I have already created a sub-domain (I use GoDaddy) that ...
2
votes
1answer
200 views
Add a Custom Class to Admin Menus
I am looking for a way to add some custom classes to the admin menus using PHP.
For example, here are the li tag for Posts and Pages:
<li id="menu-posts" class="wp-has-submenu ...
0
votes
1answer
41 views
If the only thing I use MySQL for is Wordpress, do I need MySQL's timezone tables?
The only thing I have MySQL around for is Wordpress. Some MySQL features, I gather, require you to import the system timezone database into special tables in the mysql database. (Which seems like a ...
0
votes
1answer
73 views
blank white page in admin, white space hunting?
Upon logging into the dashboard, I am presented with a blank white page, tho the front end of the site works fine. I am pretty sure its due to a white space oposed to a plugin issue, but not sure ...
0
votes
1answer
108 views
Multiple custom post types on same admin page
Here's my situation....
I'm creating a plugin that will allow families to register on the site I'm working on. Each family will have 1 or more children that they need to add to their registration. My ...
2
votes
1answer
135 views
Only allow new subpages to be created
I'm looking for a way to only allow users to create new subpages once there are nine pages that are parents/root pages. Once there are nine parent pages when trying to create a new parent the users ...
4
votes
3answers
429 views
Editor Styles and Typekit
My website uses typekit to grab custom fonts, which works on the frontend.
I'd like to put this in my editor styles in the backend. However, I don't know how I would do this. Typekit uses a js embed ...
0
votes
2answers
179 views
Get post ID in post/page edit area
How can i get "post id" in post edit area for add_filter in functions.php?
I want to change file name automatically during upload. so i need to obtain post id.
the code is as follows:
add_filter( ...
3
votes
2answers
67 views
How to develop a community feature in the dashboard for multiauthor site
I run a Wordpress site that has more than 300 authors. Is it possible to create some type of community in the backend (dashboard)? Ideally, a space where the authors can discuss with each other in a ...
1
vote
0answers
138 views
Categories in admin interface: can they be collapsible?
I have many hierarchical categories, some of which have the same names.
Can I add collapsible categories functionality in the category selection widget in the admin interface?
I refer to the ...
0
votes
1answer
403 views
Enqueue jQuery UI Tabs In Admin Area
Does anyone know how to enqueue the script "Jquery UI Tabs" in admin area? I want to use it inside my theme options page. Already read the related wordpress documentation but with no results... I have ...
0
votes
1answer
124 views
add_cap for editor but no admin role
I want my editors to have the possibility, to add other users.
I added:
$edit_editor->add_cap('create_users');
$edit_editor->add_cap('delete_users');
...
3
votes
3answers
187 views
Making the thumbnails in the backend Media section bigger
So I uploaded a lot of similar looking photos, and uploaded a duplicate or two.
I go into the backend to the Media panel, but alas, each row has a small thumbnail, making it time consuming to figure ...
0
votes
1answer
203 views
Custom Jquery in admin breaks media-upload script
I have this part of code which loads custom version of jquery
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://code.jquery.com/jquery-latest.min.js"), false, '');
...
0
votes
1answer
465 views
Sort wp_nav_menu() by menu order
I have made a custom menu handler for the back end, sorting the via a drag drop based on CMS Page Order.
The problem now is that it seems that it's not possible to sort wp_nav_menu in any other way ...
2
votes
1answer
112 views
Getting the different post statuses + count like in edit.php, in a custom submenu page
I'm trying to create a submenu page for reordering posts/pages.
Right now I'm trying to include the list that display the different post statuses, for example:
All (5) | Published (4) | Draft (1)
I ...
0
votes
1answer
45 views
WYSIWYG editor not in a post editor?
It is possible to use the WYSIWYG editor in theme settings (not in a post editor)?
1
vote
1answer
84 views
Remove rows in the manage post/page view
I'm looking for a way to remove the rows with the title, date and other stuff that's shown on the manage posts/pages screen (highlighted with red in the image below).
I know that I could easily hide ...
0
votes
2answers
446 views
/wp-admin/install.php redirecting to 123-reg
This is my first time installing wordpress via FTP, and the first time to an existing host and domain (I normally use EvoHosting, since it's automatic)
I've gotten to the stage where I'm heading to ...
2
votes
1answer
127 views
Adding markup to column text in “Edit Pages” admin page
I was wondering if there is a way to hook into the column titles in the "All Posts" admin page to modify them. For instance, I would like to change "Post" to "<strong>Headline</strong>". ...
2
votes
1answer
491 views
JS / JQuery form validation in backend admin menus
I'm building a plugin to manage course information and am struggling to put form validation on the new meta boxes I've added.
Has anyone a good way of putting JS / JQuery validation on the admin ...
0
votes
1answer
99 views
Randomly Display One Image From a 10-Image For Loop
I have a Wordpress function that loops thru 10 input fields & saves the data from those input fields. The data entered is either an absolute or relative link to an image. The loop looks like this.
...
1
vote
1answer
33 views
How to select a page within admin?
How does one apply an action to one particular page within admin?
I've added a bunch of wysiwyg editors to one page ("Home") and now I don't need the main editor. But the function below - of course - ...
1
vote
1answer
749 views
How to put placeholder text in the main post input area?
I'm making a course plugin for a university in England. I'm looking to put some default placeholder text in the main post content area, on the admin side. Its the rich text editor I want it to go ...
0
votes
1answer
54 views
Change pagination in editing posts [duplicate]
Possible Duplicate:
display all posts in wordpress admin
How do I increase the pagination limit in the edit posts admin section (edit.php)?
Thank you.
0
votes
0answers
161 views
When using my custom theme, after any save/submit in wp-admin I get blank screen [closed]
When I activate a theme that I made, after any save or submit that refreshes the page on wp-admin I get a blank screen, If I go back and refresh the page the settings are saved.
If I close the page in ...
0
votes
1answer
34 views
Wordpress blog code format
I am new to wordpress and I just created a new blog(free version). Now It seems that code fromat doesn't work. All lines are aligned to the left.
Please look at the image below.
Thanks.
-1
votes
1answer
111 views
Content is displayed under admin bar [closed]
After updating to 3.4, my admin bar is not pushing down the content in the admin area.
In this picture I have scrolled right up to the top of the page:
greedy admin bar
The problem is that notices ...
6
votes
3answers
334 views
What are the best practices for updating?
Don't want to do anything to take down my blog. Here are some upgrade-related questions:
How often should Wordpress be updated?
What is the best way to do it?
How to know if there is a problem with ...
3
votes
1answer
376 views
How can we customize the logo and some text on the welcome screen?
I have found discussions and solutions on hiding or removing the lately introduced Welcome screen.
But we DO find the screen, as a whole, very useful and an excellent addition. So, what we are ...
4
votes
1answer
408 views
Filter post listing by meta value which is a date
This question is almost what Im trying to achieve. Create a filter for posts based on a custom field.
My custom field is a date and I would like to create a date filter (monthly) based on this custom ...
0
votes
2answers
35 views
Where can I store common cross-site text (e.g. headings, titles etc.)
I am developing a site that I want to hand over to a client once complete. The core page 'content' is manageable, but there are elements of content (common headings, titles etc.) that are shared ...
0
votes
1answer
156 views
How to check if post/page or taxonomy post is published by admin
Example :- 10 users and 2 admin in a site.
If the post is published by admins than
<?php ?????() { ?>
<!-- do this -->
<?php }
else { ?>
<!-- do this if posted by ...
1
vote
0answers
356 views
How to remove “Super Admin” from All Users for those that are not a “Super Admin”?
I would like to remove the filter at the top that says "Super Admin" for users that are not a "Super Admin". How do I go about doing this?
This screenshot shows what I am talking about:
1
vote
1answer
543 views
Add social icons in a theme through custom admin menu
Is it possible to make a theme with an option of configuring social icons with links through the custom header control panel?
I googled it and found nothing that could help me, any help on that topic ...
1
vote
1answer
122 views
Adding another “Add Post” button to admin
I would like another "Add post" button in the admin except I am going to call it "Add voucher". It will run specific plugins that add post will not. However that is irrelivant, all I need to know it ...
1
vote
1answer
117 views
Clicking Add New button for custom taxonomy only moves element
When trying to click the "Add New Equipment Type" button for my custom taxonomy, it simply moves the DOM element up into the list of entries and fails to add the actual term. Here is my taxonomy ...