Changeset 3345110
- Timestamp:
- 08/15/2025 11:04:19 AM (8 months ago)
- Location:
- wp-todo/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
todo/modal_view.php (modified) (2 diffs)
-
wp-todo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-todo/trunk/readme.txt
r3345099 r3345110 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 A powerful, full-featured WordPress plugin to effortlessly create, manage, and track your tasks with custom statuses, priorities, and deadlines rightfrom 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. 12 12 13 13 == 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: 14 15 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.18 16 19 17 == Features == 20 18 * **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. 26 34 27 35 == Detailed Walkthrough == 28 [youtube https:// www.youtube.com/watch?v=GRk25Yq6yNY&t=]36 [youtube https://youtu.be/KQF2ouZ1mJM] 29 37 30 38 == Contribute == … … 34 42 Please [donate]() for this awesome plugin to continue it's development to bring more awesome features. 35 43 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 39 44 40 45 == Frequently Asked Questions == 46 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+. 41 55 42 56 = Q. Found a bug? = -
wp-todo/trunk/todo/modal_view.php
r3345087 r3345110 10 10 $assignee_name = $assignee_id ? get_the_author_meta('display_name', $assignee_id) : '—'; 11 11 $priority = get_post_meta( $post_id, '_todo_priority', true ) ?: 'Normal'; 12 $status = get_post_meta( $post_id, '_todo_status', true ) ?: 'N ew';12 $status = get_post_meta( $post_id, '_todo_status', true ) ?: 'Not Started'; 13 13 $deadline = get_post_meta( $post_id, '_todo_deadline', true ) ?: '—'; 14 14 … … 28 28 } else { 29 29 $time_left = $interval->days . 'd ' . $interval->h . 'h ' . $interval->i . 'm left'; 30 } 31 32 // status on modal 33 if ($status == 'Completed') { 34 $time_left = "🎉"; 35 }elseif ($status == "Cancelled") { 36 $time_left = "😢"; 30 37 } 31 38 -
wp-todo/trunk/wp-todo.php
r3345099 r3345110 6 6 Plugin Name: WP To Do 7 7 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 rightfrom 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. 9 9 Version:2.0.1 10 10 Author: Delower
Note: See TracChangeset
for help on using the changeset viewer.