Plugin Directory

Changeset 3345110


Ignore:
Timestamp:
08/15/2025 11:04:19 AM (8 months ago)
Author:
delower186
Message:

readme.txt updated

Location:
wp-todo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-todo/trunk/readme.txt

    r3345099 r3345110  
    99License 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.
     11WP-Todo: A full-featured WordPress plugin to create, manage, and track tasks with custom statuses, priorities, and deadlines from your dashboard.
    1212
    1313== Description ==
     14WP-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
     28Whether you are managing personal tasks or complex project workflows, WP-Todo makes task management simple and effective.
     29
     30== Installation ==
     311. Upload the `wp-todo` folder to the `/wp-content/plugins/` directory.
     322. Activate the plugin through the 'Plugins' menu in WordPress.
     333. 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 ==
     
    3442Please [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 ==
     46
     47= Can I use WP-Todo for team collaboration? =
     48Yes, tasks can be assigned to multiple users, and team members can add comments.
     49
     50= Can I set deadlines and priorities? =
     51Yes, 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? =
     54WP-Todo is tested up to WordPress 6.8.2 and PHP 7.2+.
    4155
    4256= Q. Found a bug? =
  • wp-todo/trunk/todo/modal_view.php

    r3345087 r3345110  
    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
     
    2828    } else {
    2929        $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 = "😢";
    3037    }
    3138
  • wp-todo/trunk/wp-todo.php

    r3345099 r3345110  
    66Plugin Name: WP To Do
    77Plugin 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.
     8Description: WP-Todo: A full-featured WordPress plugin to create, manage, and track tasks with custom statuses, priorities, and deadlines from your dashboard.
    99Version:2.0.1
    1010Author: Delower
Note: See TracChangeset for help on using the changeset viewer.