Cindy Kendrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Cleverness To-Do List] Email Assigned To-Do Items to User – Not WorkingI have not been able to reproduce the problem on any of my test sites. This is only the second report I’ve received of it. Are there any error messages relating to the plugin in your server logs or any sort of additional info you can provide? What plugins do send mail correctly so that I can see their code to see if they’re doing anything different?
Settings-wise, List view must be set to either Group or Master. Under Advanced, Assign To-Do Items to Users must be set to Yes and Email Assigned To-Do Items to User must be set to Yes. You won’t receive an email if you assign an item to yourself.
Forum: Plugins
In reply to: [Cleverness To-Do List] Can Users claim assignments?No, not by default. Maybe you could do something with JavaScript to prevent others from claiming it or modify the plugin code itself, but there’s nothing in the plugin code to allow that.
Forum: Plugins
In reply to: [Cleverness To-Do List] Priority Not ShowingYes, it’s definitely possible to remove them using CSS.
table#todo-list thead tr th { display: none; }in your CSS should work.Normally a theme adds some sort of table padding, but there doesn’t appear to be any in yours which is why the Normal50%etc is all run together.
Try adding `table#todo-list td { padding: 5px; } in your CSS. Change the padding value to whatever looks best.
Forum: Plugins
In reply to: [Cleverness To-Do List] Priority Not ShowingIt’s certainly possible. The theme may be doing something with tables to make sure all the data fits on the screen.
Forum: Plugins
In reply to: [Cleverness To-Do List] Priority Not ShowingIs the selector2.css you mentioned cleverness-to-do-list-select2.css? That only styles the assign users dropdown box.
Is it the table headings that aren’t lined up properly? The only styling I do on them is to add the little arrow for sorting. Anything else is probably coming from your theme. The CSS selector for that is
table#todo-list thead tr th.Forum: Plugins
In reply to: [Cleverness To-Do List] Priority Not ShowingFor the todoadmin shortcode, it is priority=1 instead of priorities.
The display of the todoadmin shortcode doesn’t have any default styles except the ones necessary for the progress bar to avoid conflicting with themes. It uses an HTML table and form and has plenty of CSS classes in case you need to override your theme styles.
Answered privately. Resolving.
Forum: Plugins
In reply to: [Cleverness To-Do List] Show only high priority itemsNo, sorry there is not. I can add that to my feature request list but don’t have any idea when/if it would be implemented.
Forum: Plugins
In reply to: [Cleverness To-Do List] How do I change what happens with the checkboxJust a note that this effect won’t persist. If you reload the page, the item will be gone since the code only pulls uncompleted items.
Forum: Plugins
In reply to: [Cleverness To-Do List] How do I change what happens with the checkboxWell, it’s not possible with the code currently in the plugin. You could modify the plugin, but you’ll need to reapply your changes after plugin upgrades.
The file is /js/cleverness-to-do-list-frontend.js and the part you’ll need to change is around lines 44 and 45. You’ll need to remove the fadeOut() and removeAttr lines and add something to show a strike-through instead. Like
$(todoid).css('text-decoration', 'line-through');Forum: Reviews
In reply to: [Widget CSS Classes] This made my yearGlad you find it useful! I find myself using it all the time.
Awesome! Thanks.
Forum: Plugins
In reply to: [Cleverness To-Do List] Email Assigned To-Do Items to User – Not WorkingThat should enable it.
I use WordPress’s wp_mail function. Are you able to receive other emails that WordPress and/or other plugins send? I’ve heard some hosts do have problems sending emails from WordPress.
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't assign tasks to users after update to wp 3.5Update is now available! Version 3.2.3
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't assign tasks to users after update to wp 3.5Thanks, I missed that while testing. The jQuery plugin that I’m using for the dropdown has a updated version that appears to fix this issue, so I will update the plugin tonight.