Cindy Kendrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget CSS Classes] No classes in Genesis since plugin version 1.2.5I will take a look to see if it’s simple lightbox’s problem or my plugins problem.
Forum: Plugins
In reply to: [Widget CSS Classes] PHP error: Trying to get property of non-objectThat is one testing scenario I did not do, so thank you for pointing it out. I will fix the notice.
Forum: Plugins
In reply to: [Widget CSS Classes] No classes in Genesis since plugin version 1.2.5That is very odd. Version 1.2.4 to 1.2.5 was just a simple one line error notice fix.
Fromif ($custom_sidebarcheck[0]=='yes'){
to
if ( isset( $custom_sidebarcheck[0] ) && ( $custom_sidebarcheck[0] == 'yes' ) ) {
That’s a nice idea. I’m currently working on a rewrite that will make it easier to change how things are displayed and it will be easier to customize things.
Forum: Plugins
In reply to: [Widget CSS Classes] Show/hide widget per mobile/tablet/desktopIt should work with all widgets
Forum: Plugins
In reply to: [Widget CSS Classes] Show/hide widget per mobile/tablet/desktopIt’s meant for that kind of thing, but maybe your theme CSS is preventing your CSS from being applied (your CSS may not be specific enough). Also, make sure your theme has the things described on this page: https://www.ads-software.com/plugins/widget-css-classes/faq/
Forum: Plugins
In reply to: [Cleverness To-Do List] Want to display all items in front end.Sorry but it is not currently possible. I have been working on a version that does that but no ETA on when it will be done.
Forum: Plugins
In reply to: [Widget CSS Classes] Not work on WP Page Widget pluginI’m adding the code from that file tonight.
Forum: Plugins
In reply to: [Widget CSS Classes] Option for append/prepend of CSS classesThe order of classes in the class attribute is actually irrelevant. See https://stackoverflow.com/questions/1321692/how-to-specifiy-the-order-of-css-classes if you wish to know more.
Forum: Plugins
In reply to: [Widget CSS Classes] CSS to affect content created by other plugins?It’s hard to say why it’s not working. It could be something relating to TablePress’s CSS that you need more exact CSS to override. I don’t know TablePress’s CSS but if they’re doing something like:
.tablepress td { font-size: 1em; }
You’d need to do
.mycustomclass .tablepress td { font-size: 0.8em; }
Forum: Plugins
In reply to: [Cleverness To-Do List] Can i add more then one category to the todo list?I just wanted you to know that I didn’t forget or see this but I haven’t looked into it yet. It may not be possible though.
Are you referring to WordPress admin dashboard? That’s actually a different request and pretty easy for me to add. I think I’ll work on adding that.
Forum: Plugins
In reply to: [Cleverness To-Do List] Several Default ListsI’m no longer familiar with BuddyPress code so I’m not sure if you could use a shortcode in their profile. It’s only possible though to have one default list.
Forum: Plugins
In reply to: [Cleverness To-Do List] MultisiteThanks!
Forum: Plugins
In reply to: [Cleverness To-Do List] sorting on categories does not workI haven’t been able to replicate this. It is sorting by category for me both from setting it in Settings and in clicking on the title. If it’s already sorted by Category in the settings, you have to click twice on the title to get the reverse order. That’s due to the JS plugin I used to sort.