Cindy Kendrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't deleteI saw that you also posted on the BuddyBoss forums, so hopefully they can provide some insight since it’s not a free theme. I will keep an eye on that thread and if need be, contact them for more info. If it’s something I can then fix in my plugin, I will do so.
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't deleteI haven’t had any other reports of this so I’ll need some details on your particular install. Which version of WordPress are you using? Is this with version 3.2.2 of the plugin (the most recent)?
Are you using the Individual, Group, or Master list view type? Is this happening with an admin level user? A pop up box should be appearing saying you’re about to delete the item, does that appear?
Does this happen when using a default WordPress theme and no other plugins activated? If no, that would indicate a conflict with the theme or plugin you’re using.
I’m afraid that would not be possible without modification to the plugin. There is code in the frontend class to check if the user is logged in and code in the database-related library class to see if the user has permission to do that action. You could go through and comment out all that related code and it may work, but I’m not sure. There may be additional checks relating to the user that would cause errors.
Forum: Plugins
In reply to: [Widget CSS Classes] inserting IDThis is fixed in version 1.2.
Forum: Plugins
In reply to: [Widget CSS Classes] Plugin not working for me :-(Hello,
The code that you need to edit if the plugin is not working is in your theme’s functions.php, which will be located in /wp-content/themes/yourthemename/. It’s possible though that your theme uses a non-standard method or location of registering sidebars. If you’re using a free theme and can’t find the location to edit, I can look at the code if you provide me with the theme URL.
Forum: Plugins
In reply to: [Cleverness To-Do List] CSS Styling of ToDoListHi,
You can try the code here: https://pastebin.com/8uMt0Vzs.
You may need to add !important or make some other adjustments based on what CSS your theme is using, but that shows you what selectors to use.
Forum: Plugins
In reply to: [Widget CSS Classes] inserting IDThanks for informing me about that. I’ll get that changed in the next version.
Forum: Plugins
In reply to: [Cleverness To-Do List] How to save tasks to move them to new blog?Yes, you can use WordPress’s built-in importer/exporter. The tasks are all custom post types called To-Do. In the WordPress backend, go to Tools > Export and chose the To-Do radio button.
Forum: Plugins
In reply to: [Cleverness To-Do List] Certain items resetting themselvesGreat site, I’ll have to get the URL to my husband who is a big gamer.
I logged in as that user and checked off some of the items on Main Quests (I tried several different browsers) and in all of them it did work correctly. When I reloaded that page, the items were gone and didn’t reappear.
Are you using a caching plugin at all? Since you said it was being shown as completed in the backend, it sounds like something might be caching it on the frontend possibly and so isn’t showing the most up to date version of the page. I don’t know why it would only happen with that one category only though.
Forum: Plugins
In reply to: [Widget CSS Classes] [Plugin: Widget CSS Classes] error noticesThanks for letting me know about this. It will be fixed in the next version.
No, not currently. I do have that on my feature request list though.
Currently there is no method. You could replace the Table Sorter jquery plugin with Data Tables (https://datatables.net/) which allows pagination. I plan to use that instead in a future version. I haven’t done any testing to know how it will work though.
Good to hear it’s working.
You can email me at cindy at cleverness.org or use the Report New Issue button at https://cleverness.org/trac/.
Hi, what are you using for permalinks? It should just go to the same page you were just on but with those parameters attached to the URL. Are you using any redirect plugins or is there anything different about the page URL or is it just something like https://mysite.com/about/?
Forum: Plugins
In reply to: [Cleverness To-Do List] [Plugin: Cleverness To-Do List] Quick Help?It seems that I neglected to add a CSS class to the list format for the completed items.
If you edit /cleverness-to-do-list/includes/cleverness-to-do-frontend.class.php, at line 614, and change it to
$this->list .= '<'.$list_type.' class="todolist todolist-completed">';
,you can add the strike-through and tick through CSS then.
I’ll add that CSS class in the next release.
If you were looking to add that HTML manually, then in the same file you would edit the show_todo_list_items functions and check to see if $completed = 1.