Our Todo List Plugin
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
Download
Download Our Todo List version 2.0
Howto Upgrade to version 2.0
- Go to ‘Plugins’, deactivate Our Todo List.
- In your server, replace the old
ourtodolist.phpfile (or folder) with the new one. - Refresh ‘Plugins’, activate Our Todo List 2.0.
- (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.
- Copy
ourtodolist.phpto yourwp-content/plugins/ - Activate the plugin
- (Wordpress 1.5 users) Go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script.
- (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:
- German - translated by kretzschmar.
- French (.mo file) - translated by Lise.
- 中文简体 - translated by Anthony.
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:
-
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.
-
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.
-
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.
-
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 existOTD_TODO- does any todo tasks existOTD_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
- Cook for lunch.
- 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
- Release Our Todo List plugin version 1.7.
- Cook for lunch.
- Late-night movie ticket.
FAQs
-
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.
-
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:
- Install Our Todo List, activate it
- Deactivate Abstract Dimension’s Todo List
-
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:
- Open
ourtodolist.phpwith your favourite editor - Search for the phrase:
$otd_tablename = $table_prefix . 'todolist'; - Change the
'todolist'to another name (e.g.'ourtodolist') - Save the changes
- Open
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.
- Added a new function
- version 1.6
- Top-level codes are wrapped into a function and hooked to ‘init’ action.
It should fix Humuhumu’s problem.
- Top-level codes are wrapped into a function and hooked to ‘init’ action.
- 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)
- Added plugin localization support, by calling
- 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.
January 29th, 2007 at 1:57 am
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?
January 29th, 2007 at 11:30 am
mysurface, please go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script to create the database table.
January 29th, 2007 at 6:39 pm
I would like to publish the contents of the list on the blog. Can you add that feature?
January 30th, 2007 at 12:25 am
[…] WordPress Todo List lets blog members share ideas and manage a todo list. (No Ratings Yet) Loading … […]
January 30th, 2007 at 1:24 am
BGH Quiz, please try the new features in version 1.2, welcome to suggest for improvements. Thanks.
January 30th, 2007 at 2:06 pm
[…] 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, […]
January 30th, 2007 at 2:15 pm
[…] 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. […]
January 31st, 2007 at 8:19 pm
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?
January 31st, 2007 at 11:19 pm
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.
February 1st, 2007 at 6:55 pm
[…] [Download] [Plugin Page] […]
February 1st, 2007 at 7:46 pm
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.
February 5th, 2007 at 4:25 pm
[…] WordPress Todo List lets blog members share ideas and manage a todo list. […]
February 6th, 2007 at 2:03 am
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.
February 6th, 2007 at 2:14 am
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?
February 6th, 2007 at 2:51 am
[…] 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. […]
February 6th, 2007 at 10:33 am
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.
February 6th, 2007 at 6:35 pm
Thank you for adding the fuctions!
February 6th, 2007 at 10:46 pm
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.
February 6th, 2007 at 11:51 pm
Everybody who wants to try the german Version can download Version 1.4 with the german locale at:
diekretzschmars.de
February 6th, 2007 at 11:51 pm
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/
February 7th, 2007 at 4:56 am
[…] 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: […]
February 8th, 2007 at 11:11 pm
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.
February 11th, 2007 at 7:52 pm
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?
February 11th, 2007 at 8:25 pm
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.
Hope this is what you need.
February 11th, 2007 at 9:16 pm
Sorry, I am an idi.. I did that but placed the if function AFTER the headline, therefore h3 was always visible.
Thanks.
March 3rd, 2007 at 11:52 pm
[…] Our Todo List […]
March 5th, 2007 at 8:59 am
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.
March 5th, 2007 at 1:19 pm
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.
March 5th, 2007 at 7:39 pm
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 …
March 7th, 2007 at 2:36 pm
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.
March 8th, 2007 at 3:19 am
Sorry, but for the next weeks i won’t have time to work on ourtodo.
March 11th, 2007 at 5:29 am
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.
March 12th, 2007 at 9:58 pm
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.
March 12th, 2007 at 11:22 pm
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.
March 13th, 2007 at 1:13 am
I just updated to 1.6, and it’s working fine now. Thanks for the speedy turnaround on a fix!
March 14th, 2007 at 8:12 pm
[…] ダウンロード:Wordpress by Examples » Our Todo List Plugin […]
April 2nd, 2007 at 2:10 am
[…] Original post by toydi […]
April 29th, 2007 at 11:10 am
[…] 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… […]
April 30th, 2007 at 10:38 pm
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).
May 4th, 2007 at 8:32 am
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.May 5th, 2007 at 3:07 pm
Yes, just the output.
May 12th, 2007 at 3:41 pm
Any progress with your modifications yet toydi?
May 13th, 2007 at 5:15 pm
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……
May 13th, 2007 at 10:11 pm
[…] 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. […]
May 14th, 2007 at 2:36 am
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.
May 14th, 2007 at 2:40 am
Sorry, I just thought again and what I want to have is possible right now. Sorry, thanks again. I am happy as it is.
May 14th, 2007 at 8:07 am
[…] [插件下载 | Plugin download] [插件主页 | Plugin Page] […]
May 16th, 2007 at 10:52 pm
[…] [插件下载 | Plugin download] [插件主页 | Plugin Page] […]
May 20th, 2007 at 6:45 am
Hi there - great plugin. Just wanted to know how to restrict the to-do list to authors and above? Thanks in advance!
June 1st, 2007 at 3:07 pm
[…] 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… […]
June 7th, 2007 at 11:54 pm
[…] 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. […]
June 10th, 2007 at 10:52 pm
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.
June 12th, 2007 at 11:17 am
Kretzschmar, I use
is_int()inourtodolist_completed()to verify the$limitvariable, it will limit the results only if$limitis 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’]);
June 12th, 2007 at 11:28 am
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!
June 12th, 2007 at 1:01 pm
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.
June 19th, 2007 at 6:43 pm
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 !
June 25th, 2007 at 7:10 pm
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
June 26th, 2007 at 2:02 pm
[…] Visit […]
July 1st, 2007 at 11:50 pm
[…] 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 […]
July 3rd, 2007 at 9:08 pm
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.
July 3rd, 2007 at 9:45 pm
Another bug : the priority is not localized in both the tasks to do and the tasks already done.
July 5th, 2007 at 8:17 pm
[…] Todoliste - Eine Liste die es erlaubt anderen zu zeigen, welche Projekte man derzeit in Bearbeitung hat oder was noch zu erledigen ist. […]
July 5th, 2007 at 9:13 pm
[…] Ourtodolist […]
July 10th, 2007 at 5:18 pm
Proudly announce that, Our Todo List 2.0 (with role-capability feature) is released.
July 16th, 2007 at 11:58 am
[…] 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 […]
July 20th, 2007 at 12:21 am
[…] Our Todo List is a funny name for a WordPress to do list only I use every day […]
July 20th, 2007 at 11:09 pm
Ich habe meine deutsche Übersetzung aktualisiert. Bitte bei Bedarf herunterladen: http://diekretzschmars.de/2007/our-todo-list-germandeutsch/
August 23rd, 2007 at 2:32 am
[…] 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 […]
September 5th, 2007 at 9:36 am
i’m in love with this plugin! thanks so much
September 13th, 2007 at 1:27 pm
[…] 随便介绍下,日程这个页面是通过 Our Todo List […]
September 17th, 2007 at 5:27 am
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
September 17th, 2007 at 5:35 am
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…
September 24th, 2007 at 2:21 am
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
September 25th, 2007 at 11:08 am
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.
September 26th, 2007 at 1:07 pm
[…] 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 […]
September 29th, 2007 at 1:45 pm
[…] Our Todo List 是一个简便的“待办事项”插件,可以用来跟团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。 […]
October 22nd, 2007 at 8:28 pm
[…] Our Todo List 是一个简单易用的“待办事项”插件,我爱水煮鱼曾经介绍过它:可以用来跟 团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。对个人来讲,也可以做为要写的、想写的文章列出,征集读者的意见。 […]
October 28th, 2007 at 2:04 am
[…] 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 […]
October 28th, 2007 at 11:47 am
[…] 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 […]
October 28th, 2007 at 3:43 pm
[…] 目前已经包含以下插件及其汉化包: 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 […]
October 28th, 2007 at 7:40 pm
[…] 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 […]
October 29th, 2007 at 12:24 am
[…] 然后还默认支持下面的插件: WP 2.3 Related Posts Where did they go from here? clicki Our Todo List […]
November 8th, 2007 at 10:25 am
[…] 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. […]
November 15th, 2007 at 3:34 pm
[…] Our Todo List Plugin Post […]
November 22nd, 2007 at 9:20 pm
[…] Our To-Do List is a simple to-do list that I will experiment with. I should perhaps explain that I am not […]
November 26th, 2007 at 12:03 am
It would be great if out to do list had categories for the todo items.
December 29th, 2007 at 1:50 am
[…] 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”. […]
December 29th, 2007 at 1:51 am
[…] 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”. […]
January 5th, 2008 at 8:34 am
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?
January 13th, 2008 at 7:01 am
[…] - Our To Do List Plugin A simple todo list plugin to share ideas/todos with blog members. All members work together to […]
January 17th, 2008 at 9:54 am
[…] 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 […]
January 17th, 2008 at 10:07 am
[…] 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 […]
January 17th, 2008 at 10:10 am
[…] 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 […]
January 17th, 2008 at 10:23 am
[…] 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 […]
January 17th, 2008 at 10:23 am
[…] 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 […]
January 18th, 2008 at 1:53 am
[…] 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 […]
January 18th, 2008 at 6:25 pm
[…] 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 […]
January 24th, 2008 at 3:00 pm
[…] Our Todo List:在wordpress后台中为相应的角色提供todo list功能。 […]
February 28th, 2008 at 3:35 am
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!
March 9th, 2008 at 12:00 am
You are so great. You did a fantastic job with release
March 24th, 2008 at 6:16 am
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!
April 6th, 2008 at 3:50 pm
Cool, the post.
Thanks for the information.
May 5th, 2008 at 10:42 am
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.
May 8th, 2008 at 12:36 am
Doesn’t seem to work with 2.5, Database table not being created.
May 10th, 2008 at 1:53 am
@Adrain
Thank you for the info, a shame cause it looks like an awesome plugin.