Wordpress by Examples

29-01-2007 (12:09 am) :: by toydi

Our Todo List Plugin

Filed under: Plugins ::

A simple todo list plugin to share ideas/todos with blog members. All members work together to manage the todo list under “Manage” section in Wordpress administration interface.

A variant derived from AbstractDimension’s Todo List Plugin.

Screenshots

Screenshot: Manage Our Todo ListScreenshot: Our Todo List on DashboardOur Todo List Plugin - OptionsNew!

Download

Download Our Todo List version 2.0

Howto Upgrade to version 2.0

  1. Go to ‘Plugins’, deactivate Our Todo List.
  2. In your server, replace the old ourtodolist.php file (or folder) with the new one.
  3. Refresh ‘Plugins’, activate Our Todo List 2.0.
  4. (For Wordpress 2 users) Go to ‘Options’ > ‘OurTodo’ to decide who can/cannot use the plugin.

Installing

Important: If you are using Abstract Dimension’s Todo List plugin, please read FAQs before installing.

  1. Copy ourtodolist.php to your wp-content/plugins/
  2. Activate the plugin
  3. (Wordpress 1.5 users) Go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script.
  4. (Wordpress 2 users) Go to ‘Options’ > ‘OurTodo’ to decide who can/cannot use the plugin.

Note: For Wordpress 2 users, step 3 should be done automatically. If not, try step 3.

Translating

The plugin comes with a POT file, otd.pot since version 1.5. Please let me know if you publish a translation. So that I can link to you:

Install a Translation

Place the locale (.mo) file under the same directory with ourtodolist.php.

To be more organized, you can place both ourtodolist.php and the .mo file under a subdirectory, e.g. wp-content/plugins/ourtodolist/ .

Bug Reports/Feedbacks

Submit your feedback through comments.

Usage

As requested by BGH Quiz, APIs are added since version 1.2:

  1. To display all tasks (added in version 1.7)

    <?php ourtodolist_all(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  2. To display todo tasks only

    <?php ourtodolist(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  3. To display completed tasks only

    <?php ourtodolist_completed(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  4. Exist any task?

    <?php ourtodolist_exists(is_completed); ?>
    
    /* since version 1.7 */
    <?php ourtodolist_exists(status); ?>
    • is_completed - (boolean) If true, check for completed tasks; if false, check for todo tasks. Default is false.
    • status - (constant value):
      • OTD_ALL - does any tasks exist
      • OTD_TODO - does any todo tasks exist
      • OTD_COMPLETED - does any completed tasks exist

      Default is OTD_TODO.

    • Returns true if exists, otherwise returns false.

Example Code

PHP source code:

<h4>Our Todo Tasks</h4>
<?php if ( ourtodolist_exists() ) : ?>
<ol>
     <?php ourtodolist(); ?>
</ol>
<?php endif; ?>

<?php if ( ourtodolist_exists(OTD_COMPLETED) ) : ?>
<h4>Completed Tasks</h4>
<ul>
    <?php ourtodolist_completed(5, false, true); ?>
</ul>
<?php endif; ?>

Genereated HTML:

Our Todo Tasks

  1. Cook for lunch.
  2. Late-night movie ticket.

Completed Tasks

  • Release Our Todo List plugin version 1.2. ~toydi

Example Code: Classnames & Styling

Since version 1.7, each list item will have a class name.
<li class="otd_completed">..</li> if it’s a completed task,
<li class="otd_todo">..</li> if it’s a todo task.

However, they are not styled by default. Feel free to style them in your current theme’s CSS file.

PHP source code:

<h4>Task List</h4>
<?php if ( ourtodolist_exists(OTD_ALL) ) : ?>
<ol>
    <?php ourtodolist_all(); ?>
</ol>
<?php endif; ?>

CSS sample code:

.otd_completed { text-decoration: line-through; }

Generated HTML:

Task List

  1. Release Our Todo List plugin version 1.7.
  2. Cook for lunch.
  3. Late-night movie ticket.

FAQs

  1. How does it different from Abstract Dimension’s Todo List plugin?

    Our Todo List plugin is built for information sharing within a team of people who trust each other.When a new todo is created, it is visible to all members who login into Wordpress Administration interface. Members are allowed to edit/delete any todo item.For each todo item, it only records who made the last change, not who first created the item.

  2. I’m using Abstract Dimension’s Todo List, how to migrate to this plugin?

    By default, both plugins shares the same database table name. The intend is to make migration easy:

    1. Install Our Todo List, activate it
    2. Deactivate Abstract Dimension’s Todo List
  3. Can I run both Abstract Dimension’s Todo List and Our Todo List separately in my blog?

    Yes, but you MUST change the database table name used by Our Todo List plugin, so that each plugin uses a different table to store data:

    1. Open ourtodolist.php with your favourite editor
    2. Search for the phrase: $otd_tablename = $table_prefix . 'todolist';
    3. Change the 'todolist' to another name (e.g. 'ourtodolist')
    4. Save the changes

Change Log

  • version 2.0
    • Major code clean up.
    • Fixed the plugin to run on WP 1.5.
    • Added a Role-Capability feature! (WP 2.0 and above only)
    • Updated POT file
    • Replaced is_int() with a more appropriate input validation method.
    • Fixed several bugs discovered by Baruchel (a big thank).
  • version 1.7
    • Added a new function ourtodolist_all() to display both todo and completed tasks in single list. (Kretzschmar, sorry for the delayed release!)
    • Changed the input parameter of ourtodolist_exists(). But don’t worry, it is backward-compatible, which means your existing codes will not break. If it does, please let me know.
  • version 1.6
    • Top-level codes are wrapped into a function and hooked to ‘init’ action.
      It should fix Humuhumu’s problem.
  • version 1.5
    • Fixed problems in locale support, a big thank to kretzschmar!
    • Included the plugin’s POT file.
  • version 1.4
    • Added plugin localization support, by calling load_plugin_textdomain().
    • Plugin file is allowed to load when it’s inside an arbirtary subdirectory, e.g. wp-content/plugins/sub_dir/ourtodolist.php. (thanks to kretzschmar for pointing out the problems)
  • version 1.3
    • Cleaned up all global variables by adding ‘otd_’ prefix.
  • version 1.2
    • Added 3 new functions to display todo in blog, as requested by BGH Quiz.
  • version 1.0
    • Released first version.

Technorati Tags: , ,

105 Responses to “Our Todo List Plugin”

  1. mysurface Says:

    No need to create a table to database? It is created automatically? What if the table fails to create automatically? How can I create it manually?

  2. toydi Says:

    mysurface, please go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script to create the database table.

  3. BGH Quiz Says:

    I would like to publish the contents of the list on the blog. Can you add that feature?

  4. Weblog Tools Collection » Blog Archive » WordPress Plugin Releases for 1/30 Says:

    […] WordPress Todo List lets blog members share ideas and manage a todo list. (No Ratings Yet)  Loading … […]

  5. toydi Says:

    BGH Quiz, please try the new features in version 1.2, welcome to suggest for improvements. Thanks.

  6. Watershed Studio Blog » Blog Archive » January 30th, 2007 Dailies Says:

    […] Plugins: Bible Verse of the Day, Our Todo List & Share This 1.4 Tags: adobe photoshop, amd 64, gimp, gpl, Microsoft, mpl, nvu, open source, […]

  7. Plugin: Community To-do List | Wordpress Tutorials And Blogging Tips Says:

    […] To-do List Plugin is a useful plugin which allows all members to create, edit and delete entries to a community to-do list kept under the manage tab of the Wordpress Admin. Using it, members can share ideas, tasks and problems easily and swiftly- making the running and using of your site a lot easier and smoother. […]

  8. Anatoly Says:

    Your plugin is conflicting with this plugin:
    http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/
    As soon as I enable yours, plugin list stops showing plugins until I remove either yours or their plugin. I’m on WordPress 2.1.
    I wasn’t able to debug it, but may be some functions or global variables are being overrided?

  9. toydi Says:

    Thanks, Anatoly. I have read Dagondesign’s sitemap code, but there is no conflict on global variables and function names. I tried both Dagondesign Sitemap 2.71, Our Todo List 1.2 on Wordpress 2.1, everything run smooth here. Probably something else has caused the problem.

    Just to verify, are you using the latest version of Dagondesign Sitemap *2.71* as well?

    Anyway, I have cleaned up all global variables in Our Todo List 1.3. Feel free to try out. Please let me know if it works this time. Thanks.

  10. Fixmood » Blog Archive » Our Todo List 1.3 Says:

    […] [Download] [Plugin Page] […]

  11. Anatoly Says:

    That was quite lame from my side… PHP option 8MB limit per script was suddenly activated on server and I had “just enough scripts” for server. As soon as I was adding any single plugin, wp was crashing. Sorry for the hassle.

  12. Hacks, Information, and More » WordPress Plugin Releases for 1/30 Says:

    […] WordPress Todo List lets blog members share ideas and manage a todo list. […]

  13. kretzschmar Says:

    I am using wordpress 2.2 (beta). If I copy your plugin to the plugin folder everything is good. But if i leave it in the subdirectory, everytime I add a new todo I get a wordpress error that “ourtotlist.php” is not found.

  14. kretzschmar Says:

    I have seen in the plugin code that you use gettext. Why didn’t you set a textdomain? Isn’t it needed for proper translation?

  15. Writer’s Blog » Blog Archive » The Plugins I Use Says:

    […] Our Todo List - A good portion of my online time is spent looking at my WordPress dashboard, so it’s a good place to leave myself little reminders. I’ve just recently installed this todo plugin, and it’s a handy little scratch space for me to set up a todo list. […]

  16. toydi Says:

    kretzschmar, feel free to download the new version 1.4. I haved added fixes to both problems that you pointed out.

    Though, I’m not familiar with plugin localization. Please let me know, if the fix is correct. Thanks.

  17. BGH Quiz Says:

    Thank you for adding the fuctions!

  18. kretzschmar Says:

    Thanks, now everything works as expected. I checked your textdomain and made a german locale. I think there is a better way to parse the directory of the locale (load plugin textdomain) but with a fixed directory it works.
    Maybe you find a better way.

    I need your E-Mail to send you the changes.

  19. kretzschmar Says:

    Everybody who wants to try the german Version can download Version 1.4 with the german locale at:
    diekretzschmars.de

  20. kretzschmar Says:

    Everybody who wants to try the german Version can download Version 1.4 with the german locale at:
    href=”http://diekretzschmars.de/2007/our-todo-list-germandeutsch/

  21. Connected Minds » Se Liga! #3 - Plugin para o Wordpress Says:

    […] Wordpress que cria lista de tarefas na área de administração do blog - Our Todo List 1.4 - Onde: Wordpress by Examples (em inglês) - Por quem: […]

  22. kretzschmar Says:

    Please note that my theme dKret is german/dutch. I am from germany and don’t speak dutch at all.
    So at my site you dan download a german locale NOT a dutch one.

  23. kretzschmar Says:

    Sorry, I need a little help. I made a template for todo-tasks.

    I don’t want to show Todo if there is no Todo entry. How do i have to call ourtodolist_exists for this?

  24. toydi Says:

    kretzschmar,

    ourtodolist_exists() returns false if there is no entry in your Todo.

    Therefore, the code below will not display anything if there is no Todo entry.

    <?php if ( ourtodolist_exists() ) : ?>
    <h4>Todo</h4>
    <ol>
      <?php ourtodolist(); ?>
    </ol>
    <?php endif; ?>

    Hope this is what you need.

  25. kretzschmar Says:

    Sorry, I am an idi.. I did that but placed the if function AFTER the headline, therefore h3 was always visible.
    Thanks.

  26. webname » Blog Archive Says:

    […] Our Todo List […]

  27. limette Says:

    Thank you for your plugin, it works fine :-)
    Just one question: I’d like to limit the use of it to the users who are admins. One way would be, as I thought, to put the tab into the wp-admin/options-general.php-menu, which is a menue not visible for authors. I’ve changed

    $otd_location = get_settings(’siteurl’) . ‘/wp-admin/edit.php?page=’.
    plugin_basename(__FILE__);

    into

    $otd_location = get_settings(’siteurl’) . ‘/wp-admin/options-general.php?page=’.
    plugin_basename(__FILE__);

    but nothing happened. Is there another possibility?
    … sorry, but I’m not that good at php …

    Thank you.

  28. kretzschmar Says:

    I think the best way would be to use the role system of wordpress2. Have a look at the myGallery Plugin (1.4beta).
    If the plugin is aktivated for the first time it adds a new role to wordpress (ourtodo) for administrators. With the role manager plugin everybody is free in adding this role to every user he wishes.

    If you (wordpressbyexamples) need help in changing the plugin feel free to ask.

  29. limette Says:

    Thank you for your fast answer. I couldn’t catch it with role manager though, but it worked fine as soon as I changed the 1 to 3 in line 429 (add_submenu_page, etc. …, german version). Role manager still somehow has the hickups at my system, so this might be the reason, why it didn’t work …

  30. toydi Says:

    kretzschmar, sorry for late reply.

    I have tight schedule on my work recently. It would be really great if you could help to patch the ourtodolist with new feature you suggested. :)

    Just two things I concern, 1) some users may not need this feature by default, it’s nice if users are able to turn it on/off, 2) will it be backward compatibility to WP 1.5?

    Thanks.

  31. kretzschmar Says:

    Sorry, but for the next weeks i won’t have time to work on ourtodo.

  32. Humuhumu Says:

    When creating a todo item that includes a single quote (’), the plugin says that it has created the new todo item, but it does not.

  33. toydi Says:

    Humuhumu, just to confirm, do you turn off the ‘magic_quotes_gpc’ flag in php.ini setting?

    I didn’t escape the single quotes, as they are escaped when ‘magic_quotes_gpc’ is ‘true’ (PHP’s default). If this is the problem, I will update the code asap.

  34. toydi Says:

    Humuhumu, I have updated the code in version 1.6. Feel free to try it.

    Thanks to aizatto for pointing out the potential problem during a short chat.

  35. Humuhumu Says:

    I just updated to 1.6, and it’s working fine now. Thanks for the speedy turnaround on a fix!

  36. WPのプラグイン:Our Todo List Plugin Says:

    […] ダウンロード:Wordpress by Examples » Our Todo List Plugin […]

  37. list » Our Todo List Plugin Says:

    […] Original post by toydi […]

  38. Great Wordpress Plugins We Use » The Daily Blitz Says:

    […] Our Todo List by Toydi Great for issuing a shared to-do list to each of your site’s staff members, freely editable by all. Now if only I could convince my staff to actually use the thing… […]

  39. Kretzschmar Says:

    It wouuld be really great if the Plugin could support one more output option:
    I would love to have a todo list where completed todo items would be striked through. Just one list for Todo’s and completed items (the normal display of a todo list).

  40. toydi Says:

    Kretzschmar, sorry for late reply. Do you mean the output of the function ourtodolist(...)? Then it wouldn’t be too trickly, I think I can modify this function on coming weekend.

  41. Kretzschmar Says:

    Yes, just the output.

  42. Kretzschmar Says:

    Any progress with your modifications yet toydi?

  43. Kretzschmar Says:

    You are so kind toydi. You don’t have to excuse yourself.

    You are so great. You did a fantastic job with release 1.7. Super. Marve……

  44. Wordpress Module/Plugins für Mehrbenutzer-Blogs [6] » Neunzehnhundert.org :: Neue Introspektiven Says:

    […] Our Todo List 1.7: Alle Autoren eines Blogs bekommen mit Our Todo List Zugriff auf eine kleine Liste zu erledigender Aufgaben, können neue Aufgaben hinzufügen, darüber disktutieren oder sie als erledigt markieren. Von Wordpress By Examples. […]

  45. Kretzschmar Says:

    Still a wish: I have a lot of completed tasks so all Todos are striked through if ourtodolist_all is limited (10). I use a template for my complete list and a Widget just for my sidebar. In the Widget I limit the todo’s to 10 but would prefer if not finished todo’s would be shown first.

  46. Kretzschmar Says:

    Sorry, I just thought again and what I want to have is possible right now. Sorry, thanks again. I am happy as it is.

  47. wordpress是什么 » wordpress plugin - 更新于05/13 Says:

    […] [插件下载 | Plugin download] [插件主页 | Plugin Page] […]

  48. wordpress是什么 » Blog Archive » wordpress plugin - 更新于05/13 Says:

    […] [插件下载 | Plugin download] [插件主页 | Plugin Page] […]

  49. jsamlarose Says:

    Hi there - great plugin. Just wanted to know how to restrict the to-do list to authors and above? Thanks in advance!

  50. Todo- Liste Juni 2007 : netz-blogger.de Says:

    […] schreiben… Übrigens: es gibt auch ein spezielles Todo-List Plugin für Wordpress: Our Todo List Plugin, ins Deutsche übersetzt von Jörn Kretzschmar. Das werde ich mir auch mal ansehen… […]

  51. Anne Kowalski » Blog Archive » Best WordPress Plugins Says:

    […] Our ToDo List Shows a todo list in your WordPress Dashboard. Helpful for keeping track of post ideas.Note: When I installed this I had to go to Manage>Our ToDo then click the link to run the script (under the Install heading) before it would work, despite having version 2.1. […]

  52. Kretzschmar Says:

    I have a (silly?) question:
    I have an array $options. Where I saved some values (todo=4 and finished=3).

    I use your function:
    ourtodolist_completed($options[’finished’], false, false);

    Why does it always show ALL finished items?

    The array is properly filled with values (I can echo $options[finished] and get 3).

    It is really important because I use your functions inside my Widget and I want users be able to change the number of posted Todos.

  53. toydi Says:

    Kretzschmar, I use is_int() in ourtodolist_completed() to verify the $limit variable, it will limit the results only if $limit is an integer.

    The problem may be: when you retrieve a number from a widget configuration, the number is probably a string.


    $options['finished'] = '3';
    var_dump(is_int($options['finished'])); // false

    It looks like I shouldn’t use is_int(), I will try to patch it. But mean while, a simple type-casting shall solve the problem:


    $options['finished'] = '3';
    ourtodolist_completed((int)$options[’finished’]);

  54. toydi Says:

    jsamlarose, ourtodolist does not support role-based capability yet. Everyone who can login into wp-admin is capable to use this plugin.

    Kretzschmar has mentioned a possible solution, I don’t have time yet to explore it. If anyone wish to help, feel free to submit a patch! :-)

  55. Kretzschmar Says:

    Leave it as it is. I fixed my problems before (sorry for not posting).

    Your check seems to be important for me. That way a user can’t pass a string. My problem was I didn’t know (till now) that php makes ANY difference between string and integer.

    Sorry but learning never ends.

  56. Avransky Says:

    Hi toydi, your plugin is great but I have a request. I have suscribers on my blog and I don’t want them to see our to do list which is for bloggers only. So this would be an important feature for ourtodolist to support role-based capability. I hope it will do in next release if you think this is relevant. Thx anyway !

  57. Lise Says:

    Hi,
    I translated Our Todo List into French.

    The translation file is here : http://liseweb.fr/BLOG/wp-contents/uploads/otd-fr_FR.zip

    The page with the plugins, that I already translated
    http://liseweb.fr/BLOG/?page_id=160

    Best regards
    Lise

  58. WP Plugins DB » Plugin Details » Our Todo List Says:

    […] Visit […]

  59. Todo Juli 2007 Says:

    […] monatliche Liste darüber, was in diesem Blog alles so geschehen soll, wird ab sofort das Our Todo List Plugin für Wordpress übernehmen, welches für gut befunden und nun in die Sidebar eingebaut […]

  60. Baruchel Says:

    Several bugs:
    a) if the plugin is in a subdirectory (for instance wp-content/plugins/ourtodolist) which is the best thing to do at activation time AND no table exists (which means that a table should be created), there is an error because the add_action concerning activation assumes the php file is not in a subdirectory. It can be fixed with the following line :
    add_action(’activate_’.dirname(plugin_basename(__FILE__)).’/ourtodolist.php’,'otd_install’);
    instead of
    add_action(’activate_ourtodolist.php’,'otd_install’);

    b) the name of the author is not right in the initial comments of the php file ;
    c) there is an issue at creation time if the french translation is installed, because of a single quote in the sentence. It seems to work well by correcting the otd_insert function with
    “VALUES ($userdata->ID, 0, $priority,\”$todotext\”)”;
    replacing the very similar line.

  61. Baruchel Says:

    Another bug : the priority is not localized in both the tasks to do and the tasks already done.

  62. Unsere Fellnasen » Neue Plugins Says:

    […] Todoliste - Eine Liste die es erlaubt anderen zu zeigen, welche Projekte man derzeit in Bearbeitung hat oder was noch zu erledigen ist. […]

  63. Attribute of Wolf: Bike, Photography and Family » Wordpress佈景主題:DKret2的中文包 Says:

    […] Ourtodolist […]

  64. toydi Says:

    Proudly announce that, Our Todo List 2.0 (with role-capability feature) is released.

  65. A wordpress plugin I'd scramble to get... « Unfolding Neurons Says:

    […] Dimension seems to be no longer available (the site is down).  I did some digging and found “Our To-Do plugin” at the site,  “WordPress by Examples“.   It is based on the original To-Do […]

  66. 12 WordPress Plug-ins I can’t sleep without Says:

    […] Our Todo List is a funny name for a WordPress to do list only I use every day […]

  67. Kretzschmar Says:

    Ich habe meine deutsche Übersetzung aktualisiert. Bitte bei Bedarf herunterladen: http://diekretzschmars.de/2007/our-todo-list-germandeutsch/

  68. Tricking out a Wordpress GTD blog with a To Do List | ChillyCool Web Digger Says:

    […] added some neat features to the Wordpress blog I used for GTD recently. I found the To Do plugin, which sticks a nice To Do list right in your admin panel. It will not send you any reminders, and […]

  69. kalen Says:

    i’m in love with this plugin! thanks so much :D

  70. 给博客增加一个日程 | 我爱水煮鱼 Says:

    […] 随便介绍下,日程这个页面是通过 Our Todo List […]

  71. Speed DARYL Says:

    Hello everyone !

    I found it boring to open a new page each time i wanted to edit a todo so i modified source code to edit a todo item directly within the table that contains the list.

    Maybe you can check my code because there is still a problem with the args in the url but i solved with a trick…

    Reply by email if you want me to send you the file !

    Thanks bye

  72. Speed DARYL Says:

    Oh yes,

    I didn’t have time to add the “add todo” under the last todo item in the table… but i think i will because i don’t see the use of this extra form under the completed task… i think a simple line containing the text, the priority in a selectbox and a submit button is all that’s necessary…

    Bye see you…

  73. kym Says:

    I could not get this to work.

    When I installed it I got a link under Manage and under Options and both were the same thing - to set up who would use it. There was nowhere to actually create the lists.

    WP 2.2.1

  74. toydi Says:

    kym, I just retest, it works on fresh installed WP 2.2.1.

    Can you see “Our Todo List” in Latest Activity box under Dashboard?
    - something wrong if it’s not there.

  75. Nuestra lista de quehaceres, en WordPress / Acua Center 09 Says:

    […] trata de “Our Todo List” plugin, interesante creación de by example, que nos permite elaborar nuestra lista de quehaceres que posee las siguientes características que […]

  76. Our Todo List 汉化版 | 我爱水煮鱼 Says:

    […] Our Todo List 是一个简便的“待办事项”插件,可以用来跟团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。 […]

  77. WordPress Plugin: 待办事项 Our Todo List 改进版 | Forgot the Milk … 聆听窗外 Says:

    […] Our Todo List 是一个简单易用的“待办事项”插件,我爱水煮鱼曾经介绍过它:可以用来跟 团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。对个人来讲,也可以做为要写的、想写的文章列出,征集读者的意见。 […]

  78. WordPress 2.3.1 简体中文版 | 我爱水煮鱼 Says:

    […] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator […]

  79. WordPress 2.3.1,MYSQL,数据库,编码,字符集,utf8,wp-config | 亦简亦繁 wordpress blog Says:

    […] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator […]

  80. XaoMa’CN » Blog Archive » WordPress 2.3.1 简体中文版下载 Says:

    […] 目前已经包含以下插件及其汉化包: All in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator […]

  81. tech.inthinking.com » Blog Archive » WordPress 2.3.1 简体中文版 Says:

    […] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator […]

  82. 分享我的主题 | 我爱水煮鱼 Says:

    […] 然后还默认支持下面的插件: WP 2.3 Related Posts Where did they go from here? clicki Our Todo List […]

  83. Get Organized with the WordPress Todo List Plugin - Brad Williams Weblog: Web 2.0 and Beyond Says:

    […] Have you ever come across a topic you wanted to blog about, but didn’t have time to write at that moment? So you put it off and come back to it later, right? Of course, but what happens if you forget about the original topic you wanted to post about? I’ve had this problem a few times, so decided to find a plugin to help me out. Enter the WordPress Todo List Plugin. […]

  84. Plugins Wordpress : Cosas pendientes de hacer en el panel de administración - Fernando Gomez Says:

    […] Our Todo List Plugin Post […]

  85. Slouching towards Golgonooza » Blog Archive » Memi: version 6 coming soon Says:

    […] Our To-Do List is a simple to-do list that I will experiment with. I should perhaps explain that I am not […]

  86. James Says:

    It would be great if out to do list had categories for the todo items.

  87. ทหารเกณฑ์ » Blog Archive » Free Wordpress Plugins Says:

    […] Our To-Do List A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. […]

  88. ทหารเกณฑ์ » Blog Archive » Wordpress Management Says:

    […] Our To-Do List A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. […]

  89. brian Says:

    love the plug-in.

    1. How would I go about getting/writing a script that will create a new task from a form outside of the manage>todo page? perhaps a desktop or sidebar widget?

    2. Any plans for adding an “assign to user” feature?

  90. WordPress Weekly - Episode 2 » Jeffro2pt0.com Says:

    […] - Our To Do List Plugin A simple todo list plugin to share ideas/todos with blog members. All members work together to […]

  91. Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  92. Blog de software » Blog Archive » Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  93. Tecnologia » Blog Archiv » Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  94. Tecnologia » Blog Archiv » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  95. Blog de software » Blog Archive » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  96. D O X G L E » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  97. Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    […] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos […]

  98. 开始使用WordPress & 常用WordPress插件 | 姓张的小子 - 博客 Says:

    […] Our Todo List:在wordpress后台中为相应的角色提供todo list功能。 […]

  99. Michael Says:

    Love your plugin and use it frequently. However, one thing is really missing: Date of “creation” of entry, date of “done” and not only who last edited it, but a list of all people involved… Thanks!

  100. manele Says:

    You are so great. You did a fantastic job with release

  101. Jeromy Says:

    Wonderful plugin guys! I’d love to see RSS feed support in coming version (so people can subscribe via RSS to new todo items). Later!

  102. wow gold Says:

    Cool, the post.

    Thanks for the information.

  103. PixelMuse Says:

    Great plugin though sadly I cannot seem to get it to work. I am running Wordpress 2.51 and when I go to add new todo nothing happens. It says it updates but the todo list remains empty.

  104. Adrain Says:

    Doesn’t seem to work with 2.5, Database table not being created.

  105. PixelMuse Says:

    @Adrain
    Thank you for the info, a shame cause it looks like an awesome plugin. :)

Leave a Reply

Allowed XHTML tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>