How to develop a community feature in the dashboard for multiauthor site

What I do for almost every site with multiple authors: Create a separate blog for meta discussions, for example meta.example.com. Use P2 as theme. Install Authenticator to allow access for members only. Install something like Inform about Content, so the members get an email whenever something new was posted. I probably wouldn’t do that for … Read more

Remove a plugin meta box from the dashboard

I found that this works: add_action(‘admin_init’, ‘rw_remove_dashboard_widgets’); function rw_remove_dashboard_widgets() { remove_meta_box(‘wpdm_dashboard_widget’, ‘dashboard’, ‘normal’); } I guess ‘admin_init’ is the key, so that it runs before the dashboard is loaded.

Hiding certain panels in dashboard

@joesk isn’t quite correct. If you simply want to hide a meta box or two on the post-editing screen, you can do that via the Screen Options tab at the top of most screens. If it’s not aesthetic to your personal preferences and you’d like to remove the ability to edit the Excerpt at all, … Read more

Dashboard links not working

Those links are supposed to show submenus. If they are not showing up, that usually means your theme has a conflict with our plugin (90% of the time, this is boostrap). Please check our documentation about conflicts with Bootstrap as well as our FAQ entry about that.

How can I hide certain submenus of the Settings tab in the dashboard?

If you would like to code it yourself, here is a good tutorial for customizing the Admin Menu. http://sixrevisions.com/wordpress/how-to-customize-the-wordpress-admin-area/ Copying from the tutorial, they remove the Editor sublink: function remove_editor_menu() { remove_action(‘admin_menu’, ‘_add_themes_utility_last’, 101); } add_action(‘_admin_menu’, ‘remove_editor_menu’, 1); note: you need to know the function / action that displays it

WordPress dashboard is slooow. Front end is fast

Try this link: WordPress Support It suggests these 7 steps about half way down: Manually run /wp-admin/upgrade.php (visit it in your browser). Try decativating all plugins. If that resolves the issue, reactivate each one individually until you find the cause. Try switching to the Twenty Ten theme to rule-out a theme-specific issue. Download WordPress again … Read more

Reorder dashboard widgets

Clearing things up First, there’s a slight misunderstanding. wp_dashboard_setup is an action and not a filter. If it would be a filter, it would have one or multiple arguments and would need to return the first one. How-To #1 For an example of this action, see the following mu-plugin I use: <?php /** * Plugin … Read more

How to disable or hide “collapse menu”

Here is a simple css display: none function, it just adds some css in the html, if there are more stuff that you want to hide i recommend you to add a new css-file with the function admin_enqueue_scripts function wpse_remove_collapse() { echo ‘<style type=”text/css”>#collapse-menu { display: none; visibility: hidden; }</style>’; } add_action(‘admin_head’, ‘wpse_remove_collapse’);

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)