Skip to content

Commit b4c8329

Browse files
committed
readme updated
1 parent 1ae0045 commit b4c8329

File tree

3 files changed

+36
-15
lines changed

3 files changed

+36
-15
lines changed

readme.txt

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,51 @@ Requires PHP: 7.2.24
88
License: GPLv2
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

11-
A powerful, full-featured WordPress plugin to effortlessly create, manage, and track your tasks with custom statuses, priorities, and deadlines right from your dashboard.
11+
WP-Todo: A full-featured WordPress plugin to create, manage, and track tasks with custom statuses, priorities, and deadlines from your dashboard.
1212

1313
== Description ==
14+
WP-Todo is a powerful WordPress plugin that allows you to create, manage, and track tasks effortlessly. It’s perfect for individuals, teams, and businesses looking to stay organized and boost productivity. Features include:
1415

15-
This full-featured WordPress plugin provides a comprehensive solution for creating, managing, and tracking to-do lists directly from your dashboard.
16-
17-
Designed for both personal and professional use, it allows users to organize tasks efficiently, set priorities, and monitor progress at a glance. Each task can be assigned a status such as Not Started, In Progress, On Hold, Review, Completed, or Cancelled, giving you full visibility into your workflow. You can also set deadlines to ensure timely completion and prioritize tasks as High, Medium, or Low, helping you focus on what matters most. The plugin’s intuitive interface makes adding, editing, and deleting tasks quick and easy, while color-coded statuses and priorities provide a clear visual overview of your work. Perfect for individuals, teams, or small businesses, it enhances productivity by keeping tasks organized, improving accountability, and simplifying task tracking. Whether you’re managing daily chores, project tasks, or complex workflows, this plugin is flexible and user-friendly, making it easy to stay on top of your responsibilities. With its seamless integration into the WordPress dashboard, you can manage your to-do lists without leaving your site, ensuring efficiency and organization in one convenient tool.
1816

1917
== Features ==
2018
* **Brand new design & re-developed from scratch - More Features comming soon!**
21-
* Add as many Task to the list as you want with title, description, deadline, status, Priority etc
22-
* Add tasks, assign users, assign due date
23-
* Countdown Timer shows how many days, hours, minutes & seconds left
24-
* Mark Task as Not Started, In Progress, Pending, In Review & more
25-
* Beautiful "to do" list management dashboard
19+
* Create and manage tasks and to-do lists
20+
* Assign priorities (High, Medium, Low) to tasks
21+
* Set statuses (Not Started, In Progress, On Hold, Review, Completed, Cancelled)
22+
* Add deadlines for timely task completion
23+
* Track milestones and progress
24+
* Collaborate with team members using comments
25+
* Color-coded tasks for quick visual reference
26+
* Easy-to-use interface integrated into the WordPress dashboard
27+
28+
Whether you are managing personal tasks or complex project workflows, WP-Todo makes task management simple and effective.
29+
30+
== Installation ==
31+
1. Upload the `wp-todo` folder to the `/wp-content/plugins/` directory.
32+
2. Activate the plugin through the 'Plugins' menu in WordPress.
33+
3. Navigate to the WP-Todo menu in the dashboard to start creating and managing tasks.
2634

2735
== Detailed Walkthrough ==
28-
[youtube https://www.youtube.com/watch?v=GRk25Yq6yNY&t=]
36+
[youtube https://youtu.be/KQF2ouZ1mJM]
2937

3038
== Contribute ==
3139
This may have bugs and lack of many features. If you want to contribute on this project, you are more than welcome. Please fork the repository from [Github](https://github.com/delower186/wp-todo).
3240

3341
== Donate ==
3442
Please [donate]() for this awesome plugin to continue it's development to bring more awesome features.
3543

36-
== Installation ==
37-
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
38-
3944

4045
== Frequently Asked Questions ==
4146

47+
= Can I use WP-Todo for team collaboration? =
48+
Yes, tasks can be assigned to multiple users, and team members can add comments.
49+
50+
= Can I set deadlines and priorities? =
51+
Yes, each task allows you to set a deadline and priority level for better task management.
52+
53+
= Is WP-Todo compatible with the latest WordPress version? =
54+
WP-Todo is tested up to WordPress 6.8.2 and PHP 7.2+.
55+
4256
= Q. Found a bug? =
4357
A. Found any bugs? Please create an [issue](https://github.com/delower186/wp-todo/issues) on github.
4458

todo/modal_view.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
$assignee_id = get_post_meta( $post_id, '_todo_assignee', true );
1010
$assignee_name = $assignee_id ? get_the_author_meta('display_name', $assignee_id) : '';
1111
$priority = get_post_meta( $post_id, '_todo_priority', true ) ?: 'Normal';
12-
$status = get_post_meta( $post_id, '_todo_status', true ) ?: 'New';
12+
$status = get_post_meta( $post_id, '_todo_status', true ) ?: 'Not Started';
1313
$deadline = get_post_meta( $post_id, '_todo_deadline', true ) ?: '';
1414

1515
$content = apply_filters('the_content', $post->post_content);
@@ -29,6 +29,13 @@
2929
$time_left = $interval->days . 'd ' . $interval->h . 'h ' . $interval->i . 'm left';
3030
}
3131

32+
// status on modal
33+
if ($status == 'Completed') {
34+
$time_left = "🎉";
35+
}elseif ($status == "Cancelled") {
36+
$time_left = "😢";
37+
}
38+
3239
ob_start(); ?>
3340
<div>
3441
<h2><?php echo esc_html($post->post_title); ?></h2>

wp-todo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
Plugin Name: WP To Do
77
Plugin URI: https://sandalia.com.bd/apps
8-
Description: A powerful, full-featured WordPress plugin to effortlessly create, manage, and track your tasks with custom statuses, priorities, and deadlines right from your dashboard.
8+
Description: WP-Todo: A full-featured WordPress plugin to create, manage, and track tasks with custom statuses, priorities, and deadlines from your dashboard.
99
Version:2.0.1
1010
Author: Delower
1111
Author URI: https://sandalia.com.bd/apps

0 commit comments

Comments
 (0)