Cindy Kendrick
Forum Replies Created
-
Forum: Reviews
In reply to: [Cleverness To-Do List] I want to show completed items with option to hideIt is on the dashboard widget itself, if you hover in the right hand corner of the To-Do List box, Configure should appear. Show completed items is now one of the options.
Forum: Plugins
In reply to: [Cleverness To-Do List] ability to undo completed task from front end?Version 3.4 is now in beta and has this feature. Testing is much appreciated! https://cleverness.org/cleverness-to-do-list-v3-4-beta-1/
Forum: Plugins
In reply to: [Cleverness To-Do List] Please correct current_user_can checksThanks for the info, I will take a look to see if they’re incorrect.
Forum: Plugins
In reply to: [Cleverness To-Do List] Move "Submit Button" up under To-DoIn the next version (currently in beta https://cleverness.org/cleverness-to-do-list-v3-4-beta-1/) I’ve made the width 100%. In the version after that, I plan on adding templating for all views, so you can customize it easier.
Forum: Reviews
In reply to: [Cleverness To-Do List] I want to show completed items with option to hideYou’re in luck, this feature is in version 3.4. You can configure the dashboard widget to show completed items. It’s in beta right now but if you want to give it a try you can download it at https://cleverness.org/cleverness-to-do-list-v3-4-beta-1/.
Forum: Plugins
In reply to: [Cleverness To-Do List] ability to undo completed task from front end?Yes there will be. I’m working on finishing up the next version so it will be soon.
Forum: Plugins
In reply to: [Widget CSS Classes] Gravity Forms ConflictI’ve upgraded GF, since I’ve been meaning to anyway, but I can’t replicate the problem. Are you using any Gravity Forms add-ons?
Forum: Plugins
In reply to: [Widget CSS Classes] Gravity Forms ConflictI do not have a current Gravity Forms license to test with the current version, but the plugin has no conflicts with older versions of Gravity Forms and does not load anything on the Gravity Forms pages.
Forum: Plugins
In reply to: [Cleverness To-Do List] Is there any similar plugin that is being maintained?Thanks, I’m glad you like it.
The todolist shortcode actually uses “show” instead of “1” for the attributes, unlike the other two shortcodes. I’m changing this to work with “1” as well, but until the next version only “show” works.Forum: Plugins
In reply to: [Cleverness To-Do List] Is there any similar plugin that is being maintained?Hi,
I’m working on a new version of this plugin, but I also haven’t found any broken functionality with recent versions of WordPress. Can you please tell me what specifically isn’t working so that I may check it out?
Forum: Plugins
In reply to: [Cleverness To-Do List] All users can see every other user tasksUnder To-Do List > Settings > User Permissions is the item View To-Do Items assigned to other users set to something only admins can do and editors cannot?
I will check out the plugin but I wanted to mention that in case the setting had gotten changed for you and happened to allow a capability that editors have, so you didn’t have to wait for me to check out the plugin in case that was the answer.Forum: Plugins
In reply to: [Cleverness To-Do List] All users can see every other user tasksSorry for the delay. I’ve been going through a hard year and this plugin has been neglected, sadly. I have not tested it with 4.0, so there is a possibility that something changed in WordPress. It would be helpful if you could take screenshots of the plugin settings tabs in the configuration you would expect it to work in. Then I could see if I can replicate the issue.
Forum: Plugins
In reply to: [Cleverness To-Do List] to-do-list where members choose which task they doWith my plugin, it would not be easy to have multiple to-do lists. It was designed for only one to-do list.
The others would be possible but would require a lot of code changes.
Forum: Plugins
In reply to: [Widget CSS Classes] PHP error: Trying to get property of non-objectI had to make sure there actually was a post ID before getting the value. This is the modified portion of the code:
global $post; $id = ( isset( $post->ID ) ? get_the_ID() : NULL ); if ( isset( $id ) && get_post_meta( $id, '_customize_sidebars' ) ) { $custom_sidebarcheck = get_post_meta( $id, '_customize_sidebars' ); }
Forum: Plugins
In reply to: [Widget CSS Classes] PHP error: Trying to get property of non-objectThis should be fixed in the version I just released (1.2.6)