How can I add a task to the bottom of a column

rather than at the top of a column

applies both to new tasks as well as tasks that are being moved from one column to the next

thanks in advance!

literally no one?? nothing??
Am I strange for asking this?

I guess no one else has said issue.

And how do I do it at the very top? :slight_smile:

By default … new tasks will appear at the bottom of the current column.
After it’s been created, you can drag it to the top-position(or anywhere else!)

Without writing a plugin, I don’t think you can achieve the task to appear on top directly after creation.

For me, tasks are also being put at the top - - and I’d typically also prefer at the bottom! Any luck, Lorand, solving this?

Turns out, for us this behavior is altered by a theme we have installed called ‘GreenWing.’ (so for those of you looking to have tasks placed at the top, this plugin is doing that).

However, this plugin has a file called “TaskCretionModel.php” which can be edited to allow tasks to follow the Kanboard default (bottom of list)

CHANGE this line:

        $position = empty($values['position']) ? 1 : $values['position'];

TO THIS:

        $position = empty($values['position']) ? 0 : $values['position'];

2 Likes