WordPress Dashboard Editor

Posted on Tuesday the 18th of March, 2008 at 3:20 pm in Plugins

Of the entire website the Dashboard is seen by administrators the most, but it is the hardest part of WordPress to customize. Well not anymore. This plugin allows you to add whatever you want to the Dashboard through PHP and HTML and allows you to even add Sidebar Widgets. You may also wipe the entire dashboard or individually remove some of the more irritating sections like the Dev news, Planet WordPress and the getting started section.

In WordPress 2.5, the code is cleaner, the plugin is more responsive and you can add both “real” sidebar widgets, or add “fake” ones to match the dashboard.

This plugin is currently intended for 2.5, but it also works in WordPress 2.1 – 2.3 and can work in WordPress 2.0.x if you use the Completely Wipe Dashboard option.

Installation is a breeze:

  1. Download the zip file for WordPress Dashboard Editor
  2. Unzip and upload dashboard.php to your wp-content/plugins/ folder.
  3. Go to your dashboard. There will be a new sub-menu item.
  4. Select any options you want and add any PHP or HTML code that you want to the textbox.

Code Examples:

To add a sidebar widget to your dashboard (after selecting the option from the Dashboard management page) use the code:
<?php dynamic_sidebar('admin');?>
The Admin sidebar is modified and controlled the exact same way as any other sidebar.

If you use the WP-UserOnline plugin you can use:
<?php echo useronline_page();?>

In WordPress 2.1-2.3 f you find that your new content doesn’t align nicely you can add:

  1. <div style="float:left; width:460px;">
  2. //
  3. //Add all other content here
  4. //
  5. </div>

Any code that can be used in your WordPress Theme can be used in the dashboard. This means that you can have different information appear for the different user roles among other things.

  1. Mijomnhf posted the following on February 25, 2007 at 1:26 am.

    Very Impressive. My thnx to webmasters.

    Reply to Mijomnhf
  2. Rizwan posted the following on February 28, 2007 at 10:39 am.

    Thanks alot for this man .. I have been looking ways to get rid of all those developer news & etc…

    Reply to Rizwan
  3. Keith posted the following on March 5, 2007 at 1:08 pm.

    Thanks for this plugin :-)
    It would be nice to be able to limit the number of news items that is displayed rather than having only the option to remove the entire section(s).

    Reply to Keith
  4. Rolando posted the following on May 30, 2007 at 12:41 am.

    Very cool, thank you! Works on my WP 2.2.

    Reply to Rolando
  5. sorcerer posted the following on August 20, 2007 at 10:05 am.

    Hi!

    First of all: great work! This plugin is indeed very useful!

    But I have a question: how can I create a different dashboard for different user levels? e.g. I have links and stuff which should only be read by the admin, how can i prevent a “normal” user from seeing this content?

    thanks for your help!
    sorcerer

    Reply to sorcerer
    1. Aaron posted the following on August 20, 2007 at 11:07 am.

      This can be done using the user roles and capabilities built into WordPress.

      Basically to determine a user’s level you are going to pick a skill and check if they have it. EG The author level is the lowest level that can upload content.

      The code for this is:

      1. <?php if(current_user_can('edit_users')){ ?>
      2. //
      3. // Place code only users who are able to edit_users here.
      4. //
      5. <?php } ?>
      6. Use the following to copy and paste the code.
      Reply to Aaron
      1. Jay posted the following on April 10, 2008 at 2:48 pm.

        First, thank you for your great plug-in!
        But I have a question.
        So, to make all my subscribers to NOT see “devnews”, “planetnews” and “incoming”, what do I have to add in the php code block?

        Could you tell me the exact code to block them?

        TIA!

        -jay-

        Reply to Jay
        1. Aaron posted the following on April 10, 2008 at 2:55 pm.

          That can all be done with the checkboxes.

          Reply to Aaron
        2. Jay posted the following on April 11, 2008 at 3:03 pm.

          I know the options; but selecting them also affects to admin view. How can I avoid the situation, blocking only non-admins?

          TIA,

          Reply to Jay
        3. Aaron posted the following on April 11, 2008 at 5:10 pm.

          You would have to directly edit the dashboard.php file. Unfortunately, I don’t have a copy of the code at hand, so I can’t say for sure, but you will have to add global $current_user; inside the “dasboard_wipe” function and edit each if/else statement and change most of the lines that look like: $dashboard['dashboard_secondary'] || $all == 1 to (!current_user_can('edit_posts') && $dashboard['dashboard_secondary']) || $all == 1

          Reply to Aaron
        4. Saff Sam posted the following on April 23, 2008 at 8:04 am.

          Okay I have been following your thread to try and achieve the following:

          I would like to use the plugin creat a different simple dashboard for my contributors.

          So to do so I need to:

          Add

          //
          // Place code only users who are able to edit_users here.
          //

          But what code do I add here? Also it seems strange to use what a current user can do, surely it should be something they cant do?

          Then I need to add:

          global $current_user;

          to dashboard…but where exactly or does it not matter?

          Then replace:

          $dashboard['dashboard_secondary'] || $all == 1

          with

          (!current_user_can(‘edit_posts’) && $dashboard['dashboard_secondary'] || $all == 1

          Should this then give me what I am looking for in the scenario above?

          Thanks for your time ;)

          Reply to Saff Sam
        5. Aaron posted the following on April 24, 2008 at 11:12 pm.

          The current_user_can was for adding content for the admin user. You can prefix this as !current_user_can to check the reverse.

          You can add whatever code you want in that block. It is only an example of how to check user permissions.

          I’m not sure what the scenario you are looking for is, but yes, it would show a different dashboard to non-admin users.

          Reply to Aaron
  6. James Lewitzke posted the following on February 15, 2008 at 4:38 pm.

    Great Plugin :)
    I was just wondering if there was a way for me to display all my posts’ drafts to the dashboard? It would make writing posts a heck of a lot easier.

    Maybe I’m just asking here is what code would I need to add for it to look like the “Manage” unwritten posts section of the admin panel.

    Thanks

    Reply to James Lewitzke
  7. NI-LIMITS posted the following on March 30, 2008 at 6:52 am.

    Excellent plug-in, but I somehow managed to break it after adding ‘admin3′, ’2′ additional sidebars and then put the RSS sidebar widget into the ‘admin’ sidebar with the following error:

    Warning: preg_split() expects parameter 3 to be long, string given in wp-content/plugins/wordpress-dashboard-editor/dashboard.php on line 109

    Thought it best to tell you…

    Reply to NI-LIMITS
    1. Martin Teley posted the following on April 3, 2008 at 4:29 am.

      Same happened to me when upgrading from v2.3.3 to v2.5. :cry:

      Reply to Martin Teley
  8. Jeremy Clulow posted the following on April 8, 2008 at 4:00 am.

    Hi,

    Great plugin but on a couple of my sites it’s broken as above with the message

    “Warning: preg_split() [function.preg-split]: Unknown modifier ‘d’ in /home/httpd/site/mysite.org/htdocs/eng/wp-content/plugins/wordpress-dashboard-editor/dashboard.php on line 109″

    Help much appreciated.

    Jeremy

    Reply to Jeremy Clulow
  9. Jeremy Clulow posted the following on April 9, 2008 at 3:01 am.

    Hi Mike,

    Thanks for that. It did clear the error, but it removed *everything* on the Dashboard *except* my customized menu. No top or bottom menu bars, no nothing. I’ve now replaced version 1.01 with version 0.2 and all is fine again. As I clear the dashboard and only use my own customised menu, 0.2 works fine for me. Must remember not to upgrade!

    Jeremy

    Reply to Jeremy Clulow
  10. Nathaniel posted the following on April 11, 2008 at 2:21 am.

    Awesome plugin, I use it with great success to point my subscribers in the right direction as far as what I want them to do once they’ve signed up (using wordpress to drive an affiliate building review service).

    I’ve got one thing that annoys me about the plugin is the fact that when I add multi-line php into the text editor, it works just fine… until I try to edit again. Once the page loads, it adds it’s own BR tags at the end of every line.

    How would I disable this?

    Reply to Nathaniel
  11. simon posted the following on April 13, 2008 at 12:57 pm.

    i love this plugin, i have it running on several sites, but on one site (which is hosted on a different server) i’m getting the same line 109 error as jeremy, and the suggested fix doesn’t work for me either.

    i’d be really chuffed if anyone knows how to resolve this!

    thanks
    simon

    Reply to simon
  12. Aaron posted the following on April 13, 2008 at 1:02 pm.

    Simon and Jeremy,

    Mike’s code was correct, but WordPress stripped out part of it.

    The following code should work correctly.

    preg_split('@\<div class=\"wrap\"\>[\S\s]*\<\/div\>\<!-- wrap --\>','',$buffer); Reply to Aaron
    1. simon posted the following on April 13, 2008 at 2:46 pm.

      thanks! that works perfectly

      Reply to simon
      1. A.I. posted the following on April 13, 2008 at 5:11 pm.

        Not working for me. :(

        Reply to A.I.
  13. A.I. posted the following on April 13, 2008 at 5:30 pm.

    I was able to work around the problem by removing individual components. Wipe all still does not work, even with the code change in 109. Same error as before. At least it works. I am happy! Strangely, it works fine on other WP sites I have. Must be a theme compatibility issue.

    Reply to A.I.
    1. Aaron posted the following on April 13, 2008 at 6:49 pm.

      I’ve uploaded the correct fixed version to the plugins database. Please try upgrading.

      Reply to Aaron
  14. A.I. posted the following on April 13, 2008 at 8:42 pm.

    I’m already at 1.1. Is it the same release number? I’m confused about where to get the fixed file. Or is another 1.1 that is fixed?

    Reply to A.I.
    1. Aaron posted the following on April 13, 2008 at 9:28 pm.

      A.I. »

      I assumed you weren’t using 1.1. There must be some other problem that isn’t occurring on my setup. I’ll take a look at it.

      Reply to Aaron
      1. A.I. posted the following on April 13, 2008 at 10:45 pm.

        Thanks, just a reminder. It’s working in one WP site, but not in another, and it’s just the wipe all feature that is having trouble. Thank you for your concern.

        Reply to A.I.
  15. Solotempo posted the following on April 14, 2008 at 3:45 pm.

    When I upgraded to 2.5, I no longer am able to see “Dashboard Management” under the Dashboard section. This is for an install where I had DM activated and updated it automatically. Now when I activate it all I see is my custom text, but there is no way to modify or configure anything.

    I’ve tried deactivating, deleting, re-installing and re-activating but get the same problem

    In an install where I didn’t have DM activated, and activated it after an install, it was OK.

    Any ideas?

    Reply to Solotempo
    1. A.I. posted the following on April 14, 2008 at 3:55 pm.

      Workaround: Go directly to the link!

      http://your.url/wp-admin/index.php?page=wordpress-dashboard-editor/dashboard.php Reply to A.I.
      1. M.B. posted the following on May 1, 2008 at 11:53 am.

        With the plugin active I’m having the same issue mentioned earlier: I only see my custom menu, no header or footer, and the Warning: preg_split() expects parameter 3 to be long, string given in /home/firesnak/www/www/wp-content/plugins/wordpress-dashboard-editor/dashboard.php on line 109 error.

        I had the complete wipe enabled before I upgraded, and when I reactivated the plugin it restored the options. That seems to be where my problem came from.

        Reply to M.B.
    2. Mike posted the following on April 14, 2008 at 5:01 pm.

      Also, make sure the dashboard.php file is inside the default “wordpress-dashboard-editor” folder.

      Reply to Mike
      1. A.I. posted the following on April 14, 2008 at 6:30 pm.

        Good point. In fact, when it was not in the default install folder, the automatic upgrade failed. So it’s not a good idea to move out into the root plugins folder. Excellent catch.

        Reply to A.I.
  16. Aaron posted the following on April 19, 2008 at 8:26 am.

    With the automatic upgrade, it seems that most plugins should begin using their own folder.

    Reply to Aaron
  17. vyv00411 posted the following on April 27, 2008 at 1:04 am.

    Code fix (latest) could not work on mine (WP 2.5.1). However, some WP site works without any modification. So I also guess this caused by theme compatibiliy??
    This plugin is one of my favorite. Hoping I can get fix soon.

    Reply to vyv00411
  18. Raul posted the following on April 30, 2008 at 1:25 pm.

    Hi,

    Nice plugin, good work !!
    BTW I liked your WP theme, can I download it from your site?

    Regards

    Raul

    Reply to Raul
    1. Aaron posted the following on April 30, 2008 at 2:21 pm.

      Thank you. Unfortunately, no the theme is not currently being distributed.

      Reply to Aaron
  19. JinxedOrchid posted the following on May 2, 2008 at 3:42 pm.

    Yeah, unfortunately I’m getting the same problem with this plugin not working in my new install of WP 2.5.1 – When I click on the dashboard, I see all the new elements I have added to my dashboard, but all of the wordpress navigation links (I mean everything except the dashboard contents) dissapears!

    This is a real nice plugin. I hope I can get it working on the new WP soon.

    Reply to JinxedOrchid
  20. chris posted the following on May 3, 2008 at 5:19 pm.

    I’m so happy I discovered this plugin – thanks a lot!

    Reply to chris
  21. b1 posted the following on May 3, 2008 at 6:16 pm.

    I think the preg_split() call on line 109 is broken. Looks to me like it should be:

    $parts = preg_split('@\[\S\s]*\\<!-- wrap --\>-->@',$buffer);

    Note the assignment to the variable $part and the omission of the troubling 2nd parameter.

    cheers,
    b1

    Reply to b1
  22. Lionel Chollet posted the following on May 4, 2008 at 3:01 pm.

    WP 2.5.1 – Dashboard Editor 1.1 – Bug: “Remove recent comments” checkbox is not persistent

    “Remove recent comments” checkbox is not persistent (at least on my install).
    Any time you come back and edit things in the Dashboard management panel, you have to check the “Remove recent comments” again. That can be pretty annoying for a site that doesn’t allow comments, but whose administrator is often tweaking the Dashboard, thanks (a lot) to WordPress Dashboard Editorв?¦ ;-)

    Reply to Lionel Chollet
  23. Lionel Chollet posted the following on May 4, 2008 at 4:02 pm.

    WordPress ate my code! Here’s another tryв?¦

    WP 2.5.1 – Dashboard Editor 1.1 – Tip: Customize your custom widget’s title

    Maybe there’s a more straightforward and obvious way to do so, but I haven’t found it, so here’s my tip:

    1. Open the file “dashboard.php” located inside the “wordpress-dashboard-editor” folder in a text editor.

    2. Go to line #155 and replace
    <h3 class=”dashboard-widget-title”>
    with
    <h3 class=”dashboard-widget-title” style=”margin: -38px 0 0 0;”>

    3. Save your change.

    4. At the beginning of the custom widget text area in the Dashboard Management panel, write:
    <h3 class=”dashboard-widget-title” style=”margin: 0 -15px 0 -15px;”><span>YOUR_CUSTOM_TITLE</span><br class=”clear”/></h3>

    5. Save your change.

    6. Enjoy!

    Reply to Lionel Chollet
  24. Michael Collier posted the following on May 15, 2008 at 6:53 am.

    The error with preg_split() call on line 109 is corrected by replacing with:

    $parts = preg_split(‘@[Ss]*\@’,$buffer);

    Reply to Michael Collier
    1. fred posted the following on May 15, 2008 at 7:15 am.

      Comment form strips div tags.

      $parts = preg_split('@\[\S\s]*\\<!-- wrap --\>@',$buffer);–>

      Reply to fred
    2. Michael Collier posted the following on May 15, 2008 at 7:27 am.

      The form strips some of the code so I have added an screenshot.

      Reply to Michael Collier
  25. jdp posted the following on June 12, 2008 at 3:58 pm.

    I was pretty psyched about this plugin, but unfortunately the dynamic dashboard widgets aspect of it is unusable. It looks like the plugin is trying to do some “magic” reformatting, and it’s not turning out pretty. One thing it seems to be doing consistently is adding <p>…</p> around the php code for the dynamic sidebar, but this is not good either.
    Also, it seems to ignore my custom “title” text, showing Dashboard Editor Widget 1 instead, always.
    So then I disabled the “Use Sidebar Widgets” option, to turn it off… and the box labeled Dashboard Editor Widget 1 does not go away. It’s empty, but it should be gone! Even deactivating and re-activating the widget doesn’t clear this condition. My only choice (unless I want to dink around in the database to delete the stuff this plugin left there) is to deactivate this plugin and forget it forever. Srsly, you should have a “clean uninstall” action for this plugin. And you’re asking for donations for this? I’ve seen plenty of plugins that are a lot more robust than this one, and their authors aren’t asking for money.

    The other aspect of the plugin – disabling parts of the dashboard – seems to be working OK.
    I’m using WP 2.5.1.

    Reply to jdp
  26. zihad posted the following on June 26, 2008 at 9:02 am.

    hi,

    thnx a lot for this wonderful plugin.

    i want a tip if available:

    can i show related different sidebar widget title in place of default “dashboad editor widget 1,2 etc.”?

    if possible, how??

    thnx again dude.. :)

    Reply to zihad
  27. zihad posted the following on June 27, 2008 at 5:43 am.

    hi,

    i want to do another thing.

    i want to make “You have…” section visible only to the administrators but not to users of other levels.

    can u plz provide the code for doing this??

    thnx.

    Reply to zihad
  28. Santi Sosa posted the following on July 2, 2008 at 8:38 am.

    Great, easy clean up of the dashboard, I was able to get rid of all the unnecessary wordpress news for one of my clients.

    THanks

    Reply to Santi Sosa
  29. sean posted the following on July 8, 2008 at 7:11 pm.

    Is is possible to remove a widget once it has been created? I was playing around with the plugin on a test site, but I seem to be unable to get rid “fake widget”.

    Reply to sean
  30. Wixar posted the following on July 24, 2008 at 9:48 pm.

    Excellent plugin, just what I’ve been looking for.

    However, I would love to get this customised for my site. I’ve read above how to do certain things like allowing subscribers to see certain widgets where as allowing say contributors to see different ones.

    The problem is have very limited time and need this to be done for me…

    Anyone with good knowledge of this plugin / wordpress /coding (most preferably the developers here if you have time)… please get in touch with me if you can customise this plugin for me.

    Subscribers can see:

    - Latest posts
    - Most popular posts
    - Latest comments

    Contributors/Editors/Authors can see as above plus:

    - Posts awaiting approval
    - Latest Links (feed from Link Directory plugin)
    - Links awaiting approval

    Plus a few other things need modifying. Of course there will be a payment for all this work – but we can discuss that via msn/email etc.

    Contact me please : unrotten (at) gmail.com

    Thanks

    Reply to Wixar
  31. binks posted the following on July 27, 2008 at 11:53 pm.

    I accidentally enabled the complete wipe feature. Now I can’t see anything, so I haven’t been able to restore to the normal dashboard. :-)

    How do I recover from a complete wipe? Thanks.

    Reply to binks
  32. Alex McG posted the following on July 29, 2008 at 12:46 am.

    For those looking to reorder their dashboard widgets and such, try this plugin. It’s much easier to use and the only downside I see for most uses is that you can’t edit the “You have” and “You are” sections.

    Reply to Alex McG
  33. khooray posted the following on July 31, 2008 at 10:45 am.

    I don’t get how to do this at all. I just want to add a weight tracker to my blog. This says to upload the .zip file but it says the file isn’t found when I try to save it to my computer when downloading. Where am I supposed to save it TO before uploading? It seems like a pain. Isn’t there an easy way to get a weight tracker from tickerfactory.com onto my blog???
    Thanks

    Reply to khooray
    1. I_hate_whiners posted the following on August 2, 2008 at 9:59 am.

      khooray
      Yes, khooray, there is an easy way.
      Now quit your effing whining. Maybe someone else will feel like answering you then.

      Reply to I_hate_whiners
  34. Richard Tape posted the following on August 9, 2008 at 6:55 am.

    Hi, firstly, thanks for an absolutely wonderful plugin. I’m on 2.6 and it’s working like a charm.

    This is a really basic question and I’m sorry to ask, but I’ve tried to find an answer but to no avail. When I utilise the space which says “The following code will be added inside the wordpress widget section as a widget.” and add some valid markup in there, a lovely little box is displayed on my dashboard as expected. However, the ‘widget’ has a title of “Dashboard Editor Widget 1″ and I was wondering how I would be able to adjust this title or remove it completely?

    I’ve never really utilised ‘widgets’ before – I guess I’m stuck in the stone age. Any light you can throw on the matter is greatly appreciated.

    Thanks very much in advance, when I get my PayPal account sorted I’ll buy you a coffee :)
    Richard

    Reply to Richard Tape
    1. Richard Tape posted the following on August 9, 2008 at 7:10 am.

      There is also a small little bug that is nothing more than a slight annoyance. When I click on the “Remove Recent Comments” select box then save settings, it doesn’t save the setting for that particular widget. Strangely, the widget vanishes from the dashboard, but thr setting isn’t maintained. This only becomes slightly annoying when you make another change in the dashboard editor and click save as the Recent Comment widget reappears and you then have to go back into the dashboard editor to get rid of it again.

      Just thought I’d give you the heads up as I imagine that’s a very simple fix.

      Thanks again,

      Richard

      Reply to Richard Tape
  35. Matthew Kettlewell posted the following on August 9, 2008 at 8:42 pm.

    Thanks for the great plugin!

    I’m trying to ‘hack’ your plugin a bit, so that I can have different pages for different user-levels.

    I have the user levels working, and they can have there own custom profile page, but my real problem is that I don’t know what action to associate a new form with.

    ie. I wipe the dashboard page, and have a custom form placed on the page instead, so that I can process a users details directly. In the form, I can set an action (either as a form action, or as a hidden input type, as you use). If I use a form action, it’s looking for a page/permalink if I use a hidden input form, the POST variable isn’t getting set…. soooo ….

    How do I redirect a form back to a function in the dashboard.php pluginfile (or any other file for that matter)?

    Matt

    Reply to Matthew Kettlewell
  36. Jason posted the following on October 19, 2008 at 3:29 am.

    Hi, I installed this plugin, and it works great for the dashboard, but broke my login/register/logout interface. Any time I try to log out, I get a bunch of errors. When someone new tries to register, they get the same errors, and when a returning user tries to log in, they get the same errors. The errors are as follows:

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/wp-content/plugins/wordpress-dashboard-editor-dashboard.php:1) in /var/www/wp-login.php on line 267.

    It continues to list the error several more times on lines 279, 610, 611, 612, 613, 614, 615, 618, 619, 620, 621, 624, 625, 626, 627 and 770. Can any one help me get this fixed?

    As well, has any one else had this problem? I am running the Register Plus (version 3.5.1) plugin at the same time. Could that cause a conflict?

    Reply to Jason
    1. Paul posted the following on October 19, 2008 at 7:45 am.

      @Jason

      Yes, similar problem experienced here. Login/Logout is broken, but it’s just a white screen that goes nowhere. I also have RegisterPlus running, so it sounds like there may be a conflict there.

      Very nice plug-in though.

      Reply to Paul
  37. Evan posted the following on November 30, 2008 at 11:32 am.

    I am missing something simple. I’m using WP 2.6.2. There are two editor windows on the dashboard, the top one says “The following code will be added before the wordpress widget section. (works in 2.3)” and the bottom one says “The following code will be added inside the wordpress widget section as a widget.” The top one doesn’t seem to do anything and when I use any of the editor buttons the code is inserted in the bottom editor.

    So what is the top editor for or is it only for version 2.3?

    Thanks

    Reply to Evan
  38. Simon posted the following on December 11, 2008 at 3:58 pm.

    Hi

    Are you planning to release a WordPress 2.7 compatible version?

    I know that 2.7 has the ‘screen options’ tab now, but I hide this from my users and I’d like to be able to set the default widgets that display on the dashboard.

    Many thanks
    Simon

    Reply to Simon
    1. Steve posted the following on December 16, 2008 at 12:44 am.

      Dashboard editor is great, would love to see a 2.7 compatible version.

      Reply to Steve
    2. sg posted the following on January 13, 2009 at 12:52 am.

      How do you hide the ‘Screen Options’ tab from users in WP2.7? I’ve been trying to figure out how to do that.

      I’d also like to see Dashboard Editor plugin available for WordPress 2.7.

      Reply to sg
  39. Richard Harris posted the following on January 7, 2009 at 6:10 am.

    Great idea, just wish it worked with recent WP versions. :-/

    Any news for a 2.7 compatible version? Or anybody have ideas on how to customize a 2.7 dash? This is important for all the reasons this article explains.

    Thanks!

    Reply to Richard Harris
  40. Richard Harris posted the following on January 7, 2009 at 6:29 am.

    btw, looks like the stylesheet for this site is harped. Not loading for me at least. Page looks a bit strange without styling. ;-)

    Reply to Richard Harris
  41. vl posted the following on January 29, 2009 at 5:53 am.

    Hello, thanks for the plug-in … it’s very usefull, but i’ve enabled the complete wipe and now i can’t go back… :oops:
    Please help !
    I’ve desinstall, and reinstall the plugin, but i still can’t access to dashboard ..

    PS: excuse my bad english, i hope someone understand my question …

    Reply to vl
  42. MACC posted the following on February 13, 2009 at 9:14 am.

    Hello,

    I’m trying to use your plugin but I can’t seem to be able to save any of the options I choose. It just reverts back to default options everytime, I tried cleaning my browser’s cache and nothing, happens with IE and Firefox. Also I’ve placed the awp tags on my index file and when I chose the option so that it doesn’t add them automatically the plugin ceased to work. I enabled them again took a peak at the source code and there were two tags right next to each other, mine and the ones added by the program. Where are the plugins configs saved to? I tried searching the database but there’s no entry there so it must be some local file, do I need to chmod anything? Some people were saying the plugin didn’t work with the new version of wordpress so I downgraded it but still couldn’t get it to work. Waiting for suggestions, thnx! You can take a look at the website through the link on my post if you can, ty.

    Reply to MACC
  43. Linda Carter posted the following on April 19, 2009 at 12:23 pm.

    I’m on 2.7.1 and have the same problem as the person above. I suppose it’s because of the version level. Hope it’s updated.

    Reply to Linda Carter
  44. Ben B posted the following on May 5, 2009 at 8:37 am.

    Another +1 for compatibility with 2.7

    This is exactly what I’m looking for – only it doesn’t work atm :(

    Reply to Ben B
  45. MIke posted the following on May 13, 2009 at 7:03 am.

    Is this going to be updated for 2.7?

    Or does anyone have an alternative?

    Cheers

    Reply to MIke
  46. antijob posted the following on May 14, 2009 at 10:14 am.

    Добрый день, уважаемые форумчаны!
    Рады сообщить что создан новый сайт, цель которого предупредить людей которые
    устраиваются на новую работу, о кидалове. Надеюсь что общими усилиями,
    мы создадим обширную базу данных, которая может помочь привлечь нерадивых
    работодателей к ответсвенности.

    Если вас когда нибудь кидали на работе, потратьте пару минут вашего времени,
    быть может кто-то из ваших друзей устраивается на ваше место!!

    С уважением, администрация сайта http://www.cnd.su

    Reply to antijob
  47. Deventer posted the following on June 1, 2009 at 7:47 am.

    It doesn’t work with WordPress 2.7.
    Is this going to be updated?

    Thanks!

    Reply to Deventer
  48. mvgsite posted the following on August 31, 2009 at 8:42 am.

    html kod kralД± mvg site html kod kralД±

    html kod kralД± mvg site html kod kralД±

    html kod kralД± mvg site html kod kralД±

    Reply to mvgsite
  49. GigGuide posted the following on September 17, 2009 at 4:51 pm.

    Was looking for something like this but it does not appear to work for WP version 2.8.4 – installed fine but the ‘save’ button does not appear in the admin area so unable to use it. Hope there will be a fix/update soon!

    Reply to GigGuide
  50. Cinq posted the following on September 24, 2009 at 4:55 am.

    Anyone an update yet ?

    2.8.4 is not compatible with this plugin.(or vice versa)

    Reply to Cinq
  51. Brian posted the following on November 4, 2009 at 8:17 pm.

    Just wanted to let you know that the plugin doesn’t seem to work in the newer versions of wordpress. If ya have time maybe could ya update the plugin?

    Reply to Brian
  52. Emily Garman posted the following on December 18, 2009 at 9:56 pm.

    Using WP 2.8. Doesn’t seem to work. no matter what I check, it makes no change on my dashboard.

    Reply to Emily Garman
  53. Spel posted the following on December 30, 2009 at 8:35 am.

    Hi – I am interested in next

    I want to remove some features and statistics for all below status of administrator – Simply – I think that stuff can be annoying, and not only that – I don’t want anybody look at some things. Beside me and few others some data, features and similar will not be available to all – but by “status” of people on a blog

    Is it possible with this by simple checking who will see what?

    Thanks in advance

    Spel

    Reply to Spel
  54. James posted the following on January 5, 2010 at 11:48 am.

    Many thanks for this. I’ve been using WP for a couple of years now and the number of items on the dashboard that are irrelevant to me has always annoyed me, I’m just surprised I didn’t find this plugin earlier :)

    Reply to James
  55. Antiche Riproduzioni posted the following on June 10, 2010 at 12:36 pm.

    Great plugin !!! THANX A LOT !!

    Reply to Antiche Riproduzioni
  56. John Martin posted the following on August 10, 2010 at 6:29 pm.

    I guess you abandoned this project considering that it doesn’t work worth a crap in 3.0…

    Reply to John Martin
  57. Caiti posted the following on August 16, 2010 at 3:08 am.

    i installed your plug in and didnt realize it was outdated and now my dashboard is completely dysfunctional. i cant rearrange anything and “incoming links”, “plugins”, “quickpress”, “wordpress blog”, and “other wordpress news” never load in.

    Reply to Caiti
  58. Toronto web developers posted the following on September 4, 2010 at 8:49 pm.

    Toronto Web Developers You saved my life

    Reply to Toronto web developers

Leave a reply

:) :D :( :o 8O :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: ;) :!: :?: :idea: :arrow: :| :mrgreen: