Jake Goldman
Forum Replies Created
-
Forum: Plugins
In reply to: [MCE Table Buttons] Broken / missing with ACFConfirmed. Fix coming today.
Forum: Plugins
In reply to: [MCE Table Buttons] MCE table buttons not available with ACF wysiwygConfirmed. Fix coming today.
Forum: Plugins
In reply to: [MCE Table Buttons] Problems with vertical alignment and text styleTinyMCE 4 (which WordPress 3.9 upgraded to) initially dropped support for vertical alignment in its table plugin.
This has actually been added back in newer versions, but we have to keep the TinyMCE Table plugin in sync with WordPress’s bundled version of TinyMCE, which is 4.0.21. That version does not have vertical alignment added back.
As soon as WordPress upgrades core to a newer build of TinyMCE, we’ll upgrade the Table module with vertical alignments support!
Forum: Plugins
In reply to: [MCE Table Buttons] Button doesn't appear in Editor roleCan’t replicate this. Have tried several variations. Is this still something you’re seeing?
Forum: Plugins
In reply to: [MCE Table Buttons] Button doesn't appear in Editor roleInvestigating.
Forum: Plugins
In reply to: [MCE Table Buttons] Reverting back to multiple buttons?I think most of the plugin’s users prefer the slimmer profile, as creating tables is not an every day activity.
Still, I’ll investigate. Keep in mind the change wasn’t arbitrary redesign, but driven by TinyMCE’s practices, with the big move to TinyMCE 4 in WordPress 3.9.
Forum: Plugins
In reply to: [MCE Table Buttons] Add Classes and ID to table propertiesHey Marie – I’m wary because the JS is from TinyMCE’s core table’s plugin: I’m disinclined to maintain a fork of that module, but I’ll consider it. Maybe I can extend it.
Forum: Plugins
In reply to: [MCE Table Buttons] WP 3.9 Loss the ability to set background colorsTo be a bit more clear here: Tiny MCE 4.0’s table controls dropped background color support for cells. If they add it back, we’ll add it back. :-\
Forum: Plugins
In reply to: [Simple Page Ordering] How to deactivate just for 'page' post_typeThat’s basically the right path, Pawel, but you don’t want to return true in all other conditions! Here’s the right way:
add_filter('simple_page_ordering_is_sortable', 'wpsam_set_sortable_types', 10,2); function wpsam_set_sortable_types($sortable, $post_type){ if ( $post_type == 'page' ) { return false; } return $sortable; }Forum: Plugins
In reply to: [Simple Page Ordering] Allowing indenting of items to make them childrenYea, the better visual cue would be incredibly tricky to pull off, because we’re limited by the structure of the table rows (which don’t play well with “indentation”), and have to deal with many different scenarios, including pages with existing children, pages without existing children, etc.
We may get to it some day, but not on the near term road map.
As Paul mentioned, combined with Quick Edit, the plugin does enable ordering between children – just not quite that elegantly.
Forum: Plugins
In reply to: [Simple Page Ordering] Add l10n for "sort by order" textWill address.
Forum: Plugins
In reply to: [Simple Page Ordering] Don't work with Enhanced Media Library“the categories (most of them) are not shown while activating this plugin.”
What does that mean? I’m not very familiar with the plugin you’re referencing.
Forum: Plugins
In reply to: [Simple Page Ordering] SSL insecure content errorWill investigate. Both of those assets are loaded using plugin path variables, so its unclear to me why those wouldn’t load from SSL if the site or admin is entirely set up for SSL.
Forum: Plugins
In reply to: [Simple Page Ordering] What about adding drag & drop to Core?The lead core developers are very aware of this plugin; there are some complex considerations around high scale of page items that need to be addressed before we can make this a core plugin.
Forum: Plugins
In reply to: [MCE Table Buttons] Latest updates makes MCE table buttons disappear…Moved into a single button. π
MCE 4’s implementation is a really big upgrade, here.