Cindy Kendrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget CSS Classes] Use both manual input dropdown with multiselectThat looks very good!
1.3.0 for the version.
Forum: Plugins
In reply to: [Widget CSS Classes] Use both manual input dropdown with multiselectIf you would like to.
Forum: Plugins
In reply to: [Widget CSS Classes] Use both manual input dropdown with multiselectYes that sounds like some good ideas.
I’d like to have the dropdown and text as another option for Class Field Type (Text/Dropdown/Both/Hide).
And making the dropdown multiselect would be great.
Here is the Github repo if you’d like to code them and do a pull request: https://github.com/cleverness/widget-css-classes
Thank you!
Forum: Plugins
In reply to: [Cleverness To-Do List] Add BetweenNo, sorry, there’s no way to order them other than you mentioned.
No that’s only possible for the master list view type.
Forum: Plugins
In reply to: [Cleverness To-Do List] Customising ToDo LooksThank you, no it wouldn’t be possible unless there were changes made to the code because a lot depends on whether the checkbox state is checked or unchecked.
Forum: Plugins
In reply to: [Widget CSS Classes] LocalizationPlease email them to [email protected]. Thank you!
Eventually translations will no longer be part of the plugin itself and will be managed through www.ads-software.com. You can participate in this for this plugin at https://translate.www.ads-software.com/projects/wp-plugins/widget-css-classes.
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't work with Postie?Glad it’s working! That’s odd about the guid.
Forum: Plugins
In reply to: [Cleverness To-Do List] Can't work with Postie?This is what I’m doing to insert a new todo:
https://gist.github.com/cleverness/837a374c8c1614f8fd00You shouldn’t need to do anything to the guid.
It looks like you should be able to add the post_meta using either
https://postieplugin.com/downloads/postie-shortcodes-addon/or writing something yourself
https://postieplugin.com/extending/
with postie_post_after
and setting _status to 0 and _priority to 1 (for normal)Forum: Plugins
In reply to: [Cleverness To-Do List] Can't work with Postie?Is it setting the author correctly?
I see something in Postie’s faqs https://postieplugin.com/faq/ that mention the author being set as admin instead of the current user sometimes. My plugin pulls posts from a specific user for certain instances depending on the plugin settings.
I haven’t used Postie myself, but if they’re showing up in the database with the post_type of todo and a status of publish, it could be that the author is not set correctly. This will mainly affect individual and master list view types.
Forum: Plugins
In reply to: [Cleverness To-Do List] I'm Moving On From Developing Cleverness To-Do ListThanks!
I already have all but tagging on my list of features I’d like to add. Tagging is a great idea though, I’m adding it to my list!
Forum: Plugins
In reply to: [Widget CSS Classes] add ID / class to widget area (and not a widget in it)No, not with this plugin. Usually themes take care of adding appropriate ids and classes to their widget areas.
Forum: Plugins
In reply to: [Cleverness To-Do List] "addedby" should be available to "Master"The master list allows you to have one (the same) to-do list for everyone. Every user can complete/uncomplete the tasks on this list without affecting other users completion status.
I plan to have much greater list flexibility with OptimaList, but it will be awhile yet until that is ready.
Forum: Plugins
In reply to: [Cleverness To-Do List] "addedby" should be available to "Master"The plugin can be easily modified to show the added by for master.
If you’re comfortable with finding and editing code yourself, any addedby related function (and table headings function, depending on what you’re using), needs to change from this:
CTDL_Loader::$settings['list_view'] == 1
to:
CTDL_Loader::$settings['list_view'] != 0
Forum: Plugins
In reply to: [Cleverness To-Do List] Make a private listHere is a gist to the complete code replacement for /includes/cleverness-to-do-list-frontend.class.php:
https://gist.github.com/cleverness/3da9ae31802948608beeI have tested it in 4.3 and if a person is not logged in, they do not see any todos using [todolist]. This will only happened with the modified code, the default plugin [todolist] does not account for the scenario you are trying to achieve.