Pat Friedl
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Easy Columns] 3.9 wp broken plug-inFixed! WordPress updated to tinyMCE and they changed how a plugin accesses the editor. It’s tested and working in the new version.
Forum: Plugins
In reply to: [WP Easy Columns] Easy Columns Not WorkingFixed! WordPress updated to tinyMCE and they changed how a plugin accesses the editor. It’s tested and working in the new version.
Fixed! WordPress updated to tinyMCE and they changed how a plugin accesses the editor. It’s tested and working in the new version.
Forum: Plugins
In reply to: [WP Easy Columns] Could you please update the plugin version compatibility ?Fully compatible with up to 3.9
Forum: Plugins
In reply to: [WP Easy Columns] Notice: Undefined property: EasyColumns::$use_customSorrry guys, I can’t reproduce this issue. You can email me and I’d be happy to login and see the issue so I can fix it. Thanks!
Forum: Plugins
In reply to: [WP Easy Columns] Easy columns does not work with Windows 8 MobileDo you have an example link? The CSS is using media queries, so it could be Win 8 mobile is reporting something I need to be aware of.
Forum: Themes and Templates
In reply to: [Vantage] I have one sit looking fine in Chrome but not in IEYou’re correct, Easy Columns will look different on IE8 because I use box-model CSS for the columns. It looks and works better on current browsers back to IE9. I’ve started dropping support for IE8 because worldwide usage is now less than 10%.
Forum: Plugins
In reply to: [WP Easy Columns] Photo-text aligmentHmm, that’s an odd problem. I’ll check it out and see if I can come up with a fix!
Forum: Plugins
In reply to: [WP Easy Columns] can't delete this pluginSorry about that guys – I’ll have a new update very soon. In the meantime since you’re trying to delete (why God, why?!) you should be able to login to your cpanel or FTP to your site, browse to the wp-content/plugins folder and delete the easy-columns folder.
Again, I’ll have a fix ASAP!
Forum: Plugins
In reply to: [WP Easy Columns] CSS file reference causing issues on SSL (https) sitesPhil,
I’ll definintely see about adding a check for the column shortcode before including it.Forum: Plugins
In reply to: [WP Easy Columns] Columns inside of ColumnsI’m rolling an update into the plugin that will allow you to add nested DIV tags. Currently in WordPress, you can’t nest shortcodes, but I’m wiring it so you can do shortcodes like this:
[ezdiv_1]
[ezdiv_2]...[/ezdiv_2]
[/ezdiv_1]
I’ll see what I can do about nesting multiple columns.
Forum: Plugins
In reply to: [WP Easy Columns] spacing between rowsDo you have an example I can check?
Forum: Plugins
In reply to: [WP Easy Columns] Border around columnsYou can add any custom CSS to the custom CSS box in the settings page. Here, you could add a class for columns that added a border, shading, wahtever. Then just add that class to your columns like so:
[ezcol_1third class="mycustomClass"]...[/ezcol_1third]
And that’ll use the custom CSS you set up. Hope that helps!
Forum: Plugins
In reply to: [WP Easy Columns] List-Style-PositionYou should be able to use any style at all inside the columns, as Easy Columns doesn’t enforce any style rules on the content. Of course, you could add custom CSS in the custom CSS box in the settings page.
You could create a class for positioning your lists, and then just add that class to your columns and it’ll do the styling.
Hope that helps!
Forum: Plugins
In reply to: [WP Easy Columns] Center image slider in columnsIt may depend on the slider code as well. If you do any debugging, say in Chrome or FireFox, you can select the main slider element (typically a DIV tag) and then see what the computed CSS is.
Typically on a DIV tag, you’ll want to make sure the CSS for centering is:
margin-left: auto;
margin-right: auto;
Easy Columns doesn’t enforce any style on the content, just the columns, so that CSS may help.